CSS3 動畫(CSS3 @keyframes 規則)

來源:互聯網
上載者:User

標籤:not   webkit   動畫   frame   綁定   div   style   時間長度   safari   

@keyframes 規則用於建立動畫。在 @keyframes 中規定某項 CSS 樣式,就能建立由當前樣式逐漸改為新樣式的動畫效果。

瀏覽器支援

 

Internet Explorer 10、Firefox 以及 Opera 支援 @keyframes 規則和 animation 屬性。

 

Chrome 和 Safari 需要首碼 -webkit-。

 

注釋:Internet Explorer 9,以及更早的版本,不支援 @keyframe 規則或 animation 屬性。

 

 

 

@keyframes myfirst
{
from {background: red;}
to {background: yellow;}
}

@-moz-keyframes myfirst /* Firefox */
{
from {background: red;}
to {background: yellow;}
}

CSS3 動畫

當您在 @keyframes 中建立動畫時,請把它捆綁到某個選取器,否則不會產生動畫效果。

通過規定至少以下兩項 CSS3 動畫屬性,即可將動畫綁定到選取器:

  • 規定動畫的名稱
  • 規定動畫的時間長度
執行個體

把 "myfirst" 動畫捆綁到 div 元素,時間長度:5 秒:

div{animation: myfirst 5s;-moz-animation: myfirst 5s;/* Firefox */-webkit-animation: myfirst 5s;/* Safari 和 Chrome */-o-animation: myfirst 5s;/* Opera */}


@-webkit-keyframes myfirst /* Safari 和 Chrome */
{
from {background: red;}
to {background: yellow;}
}

@-o-keyframes myfirst /* Opera */
{
from {background: red;}
to {background: yellow;}
}

CSS3 動畫(CSS3 @keyframes 規則)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.