網(wǎng)頁(yè)用常用的ico小圖標(biāo) 用CSS3 使其 鼠標(biāo)移上去時(shí)旋轉(zhuǎn)
<a href="#"><img src="images/tubiao.jpg" /> 標(biāo)題題標(biāo)題題標(biāo)題題標(biāo)題題標(biāo)題題標(biāo)題題標(biāo)題題</a>
<style type="text/css">
img
{
border: none;
float: left;
margin: 6px 0 0 6px;
-webkit-transition: 1s all;
-moz-transition: 1s all;
-o-transition: 1s all;
transition: 1s all;
}
a:hover img
{
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
</style>