鼠标移入放大效果
.box{
width: 25px;
height: 25px;
/* margin: 50px auto; */
border-radius: 50%;
">brown;
transition: all 0.5s;
-webkit-transition: all .5s;/* Safari 和 Chrome */
-moz-transition: all 0.5s;/* Firefox*/
-ms-transition:all 0.5s; /* Internet Explorer */
-o-transition: all 0.5s;/* Opera */
cursor: pointer;
}
.box:hover{
transform: scale(1.5);
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
}
浙公网安备 33010602011771号