您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關css實現彈跳球動畫效果的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1、定義動畫關鍵幀
對于這個動畫,我們將使用兩個關鍵幀 - 一個用恒定速度水平平移球,另一個用于應用大致拋物線垂直彈跳運動。可以將水平和垂直平移組合成一個關鍵幀,但這對我們所追求的效果不起作用。
使用以下關鍵幀可以輕松實現水平運動:
@-webkit-keyframes travel { from { } to { left: 640px; } } @keyframes travel { from { } to { left: 640px; } }
稍后將使用指定的名稱“travel”引用此關鍵幀,并使用linear(轉換計時函數)來應用該關鍵幀,該函數隨每次迭代更改方向。
對于垂直彈跳,動畫,我們要利用的易用性在和漸出定時功能來模擬重力場的影響:
@-webkit-keyframes bounce { from, to { bottom: 0; -webkit-animation-timing-function: ease-out; } 50% { bottom: 220px; -webkit-animation-timing-function: ease-in; } } @keyframes bounce { from, to { botttom: 0; animation-timing-function: ease-out; } 50% { bottom: 220px; animation-timing-function: ease-in; } }
該關鍵幀已被命名為“bounce”以供將來參考。
組合這兩個關鍵幀將使我們的'球'水平移動640像素,垂直移動220像素。當然,這些值需要調整以適應“舞臺”的大小。
2、設置動畫的舞臺
與往常一樣,我們首先設置一個“舞臺”,在其中執行動畫。在這種情況下,一個尺寸為660 x 240像素的簡單DIV。讓寬度為100%會很好,但是在不知道確切像素寬度的情況下放置一些元素是很困難的。
#stage { position: relative; margin: 1em auto; width: 660px; height: 240px; border: 2px solid #666; background: #cff; }
在這個階段,我們將設置一個水平來回移動的DIV元素,并在其中表示上下反彈的“球”的DIV:
#traveler { position: absolute; width: 20px; height: 240px; -webkit-animation-name: travel; -webkit-animation-timing-function: linear; -webkit-animation-iteration-count: infinite; -webkit-animation-direction: alternate; -webkit-animation-duration: 4.8s; animation-name: travel; animation-timing-function: linear; animation-iteration-count: infinite; animation-direction: alternate; animation-duration: 4.8s; } #bouncer { position: absolute; width: 20px; height: 20px; background: red; border-radius: 10px; -webkit-animation-name: bounce; -webkit-animation-iteration-count: infinite; -webkit-animation-duration: 4.2s; animation-name: bounce; animation-iteration-count: infinite; animation-duration: 4.2s; }
所以'球'的尺寸為20 x 20像素,圓角。
3、設置球運動
我們完成了一些簡單的HTML標記:
<div id="stage"> <div id="traveler"> <div id="bouncer"><!-- --></div> </div> </div>
如果您的瀏覽器支持它,動畫將自動啟動并在下面的框(或#stage)中無限期地繼續:
我們添加了一個額外的元素和一些樣式來突出動畫的x和y分量,不需要JavaScript,其他代碼完全如所示。
關于css實現彈跳球動畫效果的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。