用百分比规定变化时间,from to语句
关键字:
@keyframes创建动画
animation执行动画
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
width: 200px;
height: 200px;
background-color: red;
animation:myAnim 3s linear 0s infinite;
}
div:hover {
animation-play-state:paused;
}
@keyframes myAnim {
0% {
background-color: red;
}
50% {
background-color: green;
}
100% {
background-color: red;
}
}
</style>
</head>
<body>
<div></div>
</body>
</html>
多多关照不迷路哟!!!
谢谢