码迷,mamicode.com
首页 > 其他好文 > 详细

鼠标放上去Div旋转特效代码

时间:2015-06-06 14:49:56      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CSS3旋转</title>
<style>
.rotate {
width: 100px;
height: 100px;
background: #92B901;
-webkit-transition: -webkit-transform 2s;
}
.rotate:hover {
-webkit-transform: rotate(360deg);
}
</style>
</head>
<body>
<div>http://www.999jiujiu.com/</div>
<div class="rotate">rotate</div>
</body>
</html>

鼠标放上去Div旋转特效代码

标签:

原文地址:http://www.cnblogs.com/life6688/p/4556533.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!