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

只要把鼠标移上Div方框,方框就自动顺时针旋转

时间:2014-10-30 13:09:43      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   for   div   on   代码   html   ad   

  • 这是一个CSS3特效,IE下看不到效果。一个Div方框,在CSS3代码的作用下,只要把鼠标移上Div方框,方框就自动顺时针旋转。代码量不大,甚至有些简单,作为一个基础的CSS3实例,我想还是比较不错的,有一定参考价值。

<!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 class="rotate">rotate</div>
</body>
</html>

只要把鼠标移上Div方框,方框就自动顺时针旋转

标签:style   io   ar   for   div   on   代码   html   ad   

原文地址:http://www.cnblogs.com/skyay/p/4062198.html

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