首頁 > web前端 > css教學 > 主體

css3動畫功能之Transitions功能的介紹

零下一度
發布: 2017-05-02 14:29:40
原創
1479 人瀏覽過

在css3中,如果使用動畫功能,可以使頁面上的文字或畫像具有動畫效果,可以使背景色從一種顏色平滑過度到另一種顏色。 

css3中的動畫功能分為Transition功能與Animations功能,這兩種功能都可以透過改變css中的屬性值來產生動畫效果。
目前為止,Transitions功能支援從一個屬性值平滑過度到另一個屬性值,Animations功能支援透過關鍵影格的指定來在頁面上產生更複雜的動畫效果。

Transitions功能

瀏覽器 #Firefox 4+ Opera 10 #Safari 3.1 + Chrome 8+
#各瀏覽器寫法 -moz-transition -o -transition -webkit-transition -webkit-transition
transition:property duration timing-function;property表示对哪个属性进行平滑过渡;
duration表示在多长时间内完成属性的平滑过渡;
timing-function表示通过什么方法来进行平滑过渡;
登入後複製
登入後複製

html:

<p>示例文字</p>
登入後複製

平滑過渡一個屬性值的css:

線上示範(滑鼠經過,背景顏色改變)

<style>
      p {        background-color: pink;        -webkit-transition: background-color 1s linear;        -moz-transition: background-color 1s linear;        -o-transition: background-color 1s linear;      }
      p:hover {        background-color: blue;  /*鼠标经过背景颜色改变*/    
      }</style>
登入後複製
登入後複製

#平滑過渡多個屬性值的css:

線上示範(滑鼠經過,背景顏色、字體顏色、寬度改變)

<style>
      p {        background-color: pink;        -webkit-transition: background-color 1s linear,color 1s linear,width 1s linear;        -moz-transition: background-color 1s linear,color 1s linear,width 1s linear;        -o-transition: background-color 1s linear,color 1s linear,width 1s linear;      }
      p:hover {        background-color: blue; /*鼠标经过背景颜色改变*/   
        color: #fff;  /*鼠标经过字体颜色改变*/   
        width: 400px;  /*鼠标经过宽度改变*/   
      }</style>
登入後複製
登入後複製

線上示範(綜合使用transitions動畫功能) :

滑鼠經過圖片,先向右移動30px,然後旋轉180度;

html:

<p><img src="images/03.jpg" alt="*"></p>
登入後複製
登入後複製

css:

  img {      
  position: absolute;      top: 70px;      left: 0;      -webkit-transform: rotate(0deg);      -webkit-transitions: left 1s linear, -webkit-transform 1s linear;      -moz-transform: rotate(0deg);      -moz-transitions: left 1s linear, -moz-transform 1s linear;      -o-transform: rotate(0deg);      -o-transitions: left 1s linear, -o-transform 1s linear;    }
    p:hover img{      position: absolute;      left: 30px;      -webkit-transform: rotate(180deg);      -moz-transform: rotate(180deg);      -o-transform: rotate(180deg);    }
登入後複製

解析:
使用Transitions功能實現動畫的缺點是只能指定屬性的開始值與終點值,然後在這兩個屬性之間實現平滑過渡,不能實現更為複雜的動畫效果;
但使用Animation功能實現動畫效果,它允許透過關鍵影格的指定來在頁面上產生複雜的動畫效果。

在css3中,如果使用動畫功能,可以使頁面上的文字或畫像具有動畫效果,可以使背景色從一種顏色平滑過度到另一種顏色。
css3中的動畫功能分為Transition功能與Animations功能,這兩種功能都可以透過改變css中的屬性值來產生動畫效果。
目前為止,Transitions功能支援從一個屬性值平滑過度到另一個屬性值,Animations功能支援透過關鍵影格的指定來在頁面上產生更複雜的動畫效果。

Transitions功能

瀏覽器#Firefox 4+Opera 10#Safari 3.1 +Chrome 8+
#各瀏覽器寫法-moz-transition-o -transition-webkit-transition-webkit-transition
transition:property duration timing-function;property表示对哪个属性进行平滑过渡;
duration表示在多长时间内完成属性的平滑过渡;
timing-function表示通过什么方法来进行平滑过渡;
登入後複製
登入後複製

html:

<p>示例文字</p>
登入後複製

平滑過渡一個屬性值的css:

線上示範(滑鼠經過,背景顏色改變)

<style>
      p {        background-color: pink;        -webkit-transition: background-color 1s linear;        -moz-transition: background-color 1s linear;        -o-transition: background-color 1s linear;      }
      p:hover {        background-color: blue;  /*鼠标经过背景颜色改变*/    
      }</style>
登入後複製
登入後複製

#平滑過渡多個屬性值的css:

線上示範(滑鼠經過,背景顏色、字體顏色、寬度改變)

<style>
      p {        background-color: pink;        -webkit-transition: background-color 1s linear,color 1s linear,width 1s linear;        -moz-transition: background-color 1s linear,color 1s linear,width 1s linear;        -o-transition: background-color 1s linear,color 1s linear,width 1s linear;      }
      p:hover {        background-color: blue; /*鼠标经过背景颜色改变*/   
        color: #fff;  /*鼠标经过字体颜色改变*/   
        width: 400px;  /*鼠标经过宽度改变*/   
      }</style>
登入後複製
登入後複製

線上示範(綜合使用transitions動畫功能) :

滑鼠經過圖片,先向右移動30px,然後旋轉180度;

html:

<p><img src="images/03.jpg" alt="*"></p>
登入後複製
登入後複製

css:

  img {      position: absolute;      top: 70px;      left: 0;      -webkit-transform: rotate(0deg);      -webkit-transitions: left 1s linear, -webkit-transform 1s linear;      -moz-transform: rotate(0deg);      -moz-transitions: left 1s linear, -moz-transform 1s linear;      -o-transform: rotate(0deg);      -o-transitions: left 1s linear, -o-transform 1s linear;    }
    p:hover img{      position: absolute;      left: 30px;      -webkit-transform: rotate(180deg);      -moz-transform: rotate(180deg);      -o-transform: rotate(180deg);    }
登入後複製

解析:
使用Transitions功能實現動畫的缺點是只能指定屬性的開始值與終點值,然後在這兩個屬性之間實現平滑過渡,不能實現更為複雜的動畫效果;
但使用Animation功能實現動畫效果,它允許透過關鍵影格的指定來在頁面上產生複雜的動畫效果。

以上是css3動畫功能之Transitions功能的介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板