本文分享幾種基於HTML5+CSS3實現的一些動畫特效:圖片旋轉、無限滾動、文字跳動;實現起來均比較容易,動手來試試!php
1、圖片旋轉css
效果圖以下:html
這個效果實現起來其實並不困難。代碼清單以下:html5
<style type="text/css"> #liu{ width:280px; height: 279px; background: url(shishi.png) no-repeat; border-radius:140px; -webkit-animation:run 6s linear 0s infinite;
} #liu:hover{ -webkit-animation-play-state:paused;
} @-webkit-keyframes run{ from{ -webkit-transform:rotate(0deg);
} to{ -webkit-transform:rotate(360deg);
} } </style>
<div id="liu"></div>
1. id爲liu的div就是用來展現圖片的區域,只不過這裏的圖片是使用的背景圖片,而且經過設置圓角來達到圓形的效果。web
2. 代碼中關鍵的部分是怎樣使得圖片無限轉動。咱們可使用-webkit-animation和@-webkit-keyframes組合使用來完成。動畫
-webkit-animation是一個複合屬性,定義以下:
-webkit-animation: name duration timing-function delay iteration_count direction;
name: 是@-webkit-keyframes 中須要指定的方法,用來執行動畫。
duration: 動畫一個週期執行的時長。
timing-function: 動畫執行的效果,能夠是線性的,也能夠是"快速進入慢速出來"等。
delay: 動畫延時執行的時長。
iteration_count: 動畫循環執行次數,若是是infinite,則無限執行。
direction: 動畫執行方向。
3. @-webkit-keyframes 中的from和to 兩個屬性,就是指定動畫執行的初始值和結束值。url
4. -webkit-animation-play-state:paused; 暫停動畫的執行。spa
2、無限滾動3d
其實關於無限滾動的實現,咱們先看看效果圖:code
咱們這裏採用HTML5+CSS3實現,比用JQuery簡單的多了,下圖爲邏輯分析圖:
分析完畢後,代碼就方便書寫了,代碼清單以下:
<style type="text/css"> *{ margin: 0; padding: 0;
} #container{ width:800px; height:200px; margin:100px auto; overflow: hidden; position: relative;
} #container ul{ list-style: none; width:4000px; left:0; top:0; position: absolute; -webkit-animation:scoll 6s linear 0s infinite;
} #container ul li{ float:left; margin-right:20px;
} @-webkit-keyframes scoll{ from{ left:0;
} to{ left:-1100px;
} } </style>
<div id="container">
<ul>
<li><a href="http://www.html5cn.org/home.php?mod=editor&op=blank&charset=utf-8#"><img src="http://www.html5cn.org/images/0.png"></a>
</li><li><a href="http://www.html5cn.org/home.php?mod=editor&op=blank&charset=utf-8#"><img src="http://www.html5cn.org/images/1.png"></a>
</li><li><a href="http://www.html5cn.org/home.php?mod=editor&op=blank&charset=utf-8#"><img src="http://www.html5cn.org/images/2.png"></a>
</li><li><a href="http://www.html5cn.org/home.php?mod=editor&op=blank&charset=utf-8#"><img src="http://www.html5cn.org/images/3.png"></a>
</li><li><a href="http://www.html5cn.org/home.php?mod=editor&op=blank&charset=utf-8#"><img src="http://www.html5cn.org/images/4.png"></a>
</li><li><a href="http://www.html5cn.org/home.php?mod=editor&op=blank&charset=utf-8#"><img src="http://www.html5cn.org/images/0.png"></a>
</li><li><a href="http://www.html5cn.org/home.php?mod=editor&op=blank&charset=utf-8#"><img src="http://www.html5cn.org/images/1.png"></a>
</li><li><a href="http://www.html5cn.org/home.php?mod=editor&op=blank&charset=utf-8#"><img src="http://www.html5cn.org/images/2.png"></a>
</li><li><a href="http://www.html5cn.org/home.php?mod=editor&op=blank&charset=utf-8#"><img src="http://www.html5cn.org/images/3.png"></a>
</li><li><a href="http://www.html5cn.org/home.php?mod=editor&op=blank&charset=utf-8#"><img src="http://www.html5cn.org/images/4.png"></a>
</li></ul>
</div>
3、文字跳動
咱們常常能夠看到用flash完成的一些文字跳動效果,不過,如今咱們也能夠經過HTML5+CSS3來輕鬆的實現這樣的效果,效果圖以下:
思路分析:
1. 因爲文字有層次感的跳動,因此咱們應該 "各個擊破", 每一個文字有它本身的 "空間"。
2. 各個文字有先有後的跳動,因此咱們應該一次遞增每一個文字的動畫時長。
根據以上兩點分析,咱們依舊可使用-webkit-animation 和@-webkit-keyframes 組合來完成動畫效果,代碼清單以下:
<style type="text/css"> h2 span{ float:left; position: relative;
} h2 span:nth-child(1){ -webkit-animation:jump 1s linear 0s infinite alternate;
} h2 span:nth-child(2){ -webkit-animation:jump 1s linear 0.2s infinite alternate;
} h2 span:nth-child(3){ -webkit-animation:jump 1s linear 0.4s infinite alternate;
} h2 span:nth-child(4){ -webkit-animation:jump 1s linear 0.6s infinite alternate;
} h2 span:nth-child(5){ -webkit-animation:jump 1s linear 0.8s infinite alternate;
} @-webkit-keyframes jump { 0%{ top:0px; color:red;
} 50%{ top:-10px; color:green;
} 100%{ top:10px; color:blue;
} } </style>
<h2>
<span>我</span>
<span>愛</span>
<span>你</span>
<span>中</span>
<span>國</span>
</h2>
須要說明一點的是:span標籤默認是行內元素;可是對他們進行float操做以後,他們會變成塊級元素。