<style type="text/css">
.box{ width: 100px;
height: 100px;
margin: 50px auto;
/*background-color: #ff0000;*/
}
/*.box,*/
.box:hover {
-moz-animation: hover 1s ease-out;
-o-animation: hover 1s ease-out;
-webkit-animation: hover 1s ease-out;
/*-webkit-animation-name: hover;
-webkit-animation-duration: 1s;
-webkit-animation-timing-function: ease-in;
-webkit-animation-iteration-count: infinite;*/
}
@-webkit-keyframes hover {
0% {
width: 100px;
height: 100px;
border-radius: 50%;
}
50% {
width: 200px;
height: 200px;
border-radius: 50%;
}
100%{ width: 100px;height: 100px;border-radius: 50%; }
}
@keyframes hover {
0% {
width: 100px;
height: 100px;
border-radius: 50%;
}
50% {
width: 200px;
height: 200px;
border-radius: 50%;
}
100% {
width: 100px;
height: 100px;
border-radius: 50%;
}
}
</style>
<div class="box">我是好人</div>