<style>
#d1{
200px;
height:200px;
border:1px solid #000;
transition:background 4s linear,transform 5s linear;
}
//当鼠标移入div上时
#d1:hover{
background:#ddd;
transform:rotate(45deg) scale(0.5);
}
</style>
<body>
//页面中有一个div
<div id="d1"></div>
</body>