为什么我关键帧动画animation这几章提交之后全没有经验啊!我动画都做来了,而且加了浏览器兼容
@keyframes changeColor {
from {
background: red;
}
to {
background:green;
}
}
div {
width: 200px;
height: 200px;
background: red;
text-align:center;
margin: 20px auto;
line-height: 200px;
color: #fff;
}
div:hover {
animation-name: changeColor;
animation-duration:5s;
-webkit-animation-duration:5s;
animation-timing-function: ease-out;
animation-delay: 0.1s;
}