溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

動畫-animation

發(fā)布時間:2020-07-26 08:18:28 來源:網(wǎng)絡(luò) 閱讀:269 作者:Hello_Prudence 欄目:開發(fā)技術(shù)

動畫

=====================================================================================

1.@keyframes規(guī)則


2.animation屬性


Webkit內(nèi)核的瀏覽器(Safari,chrome)需要加-webit-前綴。


持續(xù)時間

animation-duration

-webkit-animation-duration


時間函數(shù)

animation-timing-function

-webkit-animation-timing-function


延遲時間

animation-delay

-webkit-animation-delay


動畫執(zhí)行次數(shù)

animation-iteration-count: count / infinite(無限次)

-webkit-animation-iteration-count:


動畫播放方向

animation-direction: normal / reverse /alternate / alternate-reverse

                           //正常 / 反向 / 第一次正常第二次反向 / 第一次反向第二次正常

-webkit-animation-direction:


動畫播放前后的狀態(tài)

animation-fill-mode: none / backwards / forwards /both

  // 默認(rèn)值 / 設(shè)置播放之前的元素狀態(tài)和第一個關(guān)鍵幀相同 / 播放后的

                                                                  狀態(tài)和最后一個關(guān)鍵幀相同

-webkit-animation-fill-mode:


控制動畫運(yùn)行或暫停

animation-play-state: running / paused

-webkit-animation-play-state  


*****************************************************************************************

所有和animation相關(guān)的樣式都可以寫在animation屬性內(nèi):

    但 1. 至少要有animation-name 和 animation-duration

       2. animation-duration在animation-delay之前


     div{
            height:100px;
            width:100px;
            background: url(p_w_picpaths/ball.png);
            background-size:99.5%;
            animation:myball_1 6s linear infinite alternate, myball_2 6s linear infinite;
            -webkit-animation:myball_1 6s linear infinite alternate, myball_2 6s linear infinite;
            animation-play-state:running;
            -webkit-animation-play-state:running;
        }
        div:hover{
            animation-play-state:paused;
            -webkit-animation-play-state:paused;
        }
        @keyframes myball_1{
            100%{ transform :rotate(360deg);}
        }
        @-webkit-keyframes myball_1{
                    100%{transform:rotate(360deg);}
        }
        @keyframes myball_2{
            0%,50%,100%{ opacity :1;}
            25%,75%{ opacity:0 ;}
        }
        @-webkit-keyframes myball_2{
                    0%,50%,100%{opacity:1;}
                    25%,75%{opacity:0;}
        }


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI