<html>
<head>
<meta charset="utf-8">
<title>实例
</title>
</head>
<body>
<style type="text/css">.demo_box{
border:1px solid #3DA5DC;
background:#a4dcf9;
height:100px;
width:200px;
text-align:center;
color:#fff;
}
.demo_rotate{
transition:1s ease all;
transition:1s ease all;
padding:10px;
margin:90px auto;
}
.demo_rotate:hover{
transform:rotate(360deg) scale(1.2,1.2);
transform:rotate(360deg) scale(1.2,1.2);
background:#ff9900;
}
</style>
<div class="demo_box demo_rotate">鼠标经过变大1.2倍、旋转360度并改变背景色。
</div>
</body>
</html>