《2018年12月9日》【连续431天】
标题:动画原理;
内容:
div {
width: 100px;
height: 100px;
background-color: red;
position: absolute;
left: 0;
animation: move 3s ease 0s infinite alternate;
}
/*关键帧*/
@keyframes move {
from {
left: 0;
background-color: red;
}
to {
left: 400px;
background-color: yellow;
}
}