<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			.wrap{
				width: 100%;
				height: 500px;
				position: relative;
			}
			.box{
				width: 50px;
				height: 50px;
				background-color: red;
				position: absolute;
				top: 0;
				left: 0;
			}
			.wrap:hover .box{
				/*top: 500px;
				left: 200px;
				 transition: all 3s; */
				animation: move 3s linear 1s infinite alternate;
				
			}
			@keyframes move{
				0%{
					top:0;
					left: 0;
					
				
				}
				20%{
					top: 500px;
					left: 300px;
				}
				40%{
					top: 0;
					left: 400px;
				}
				60%{
					top: 500px;
					left: 600px;
				}
				100%{
					top: 0;
					left: 800px;
				}
			}
		</style>
	</head>
	<!-- 
	帧动画
	声明帧动画:
		@keyframes move{}: {}里面写元素的几种状态的变化
		定义状态变化的时间段用关键字from, to或者用百分比表示
	动画的使用
		animation:是一个复合属性
		animation-name:帧动画的名字
		animation-duration:动画所花费的时间s| ms
		animation-timing funtion:速度曲线
		animation-delay:动画延迟执行的时间s| ms
		animation-iteration- count :动画执行的次数	num| infinite
		animation-direction:是否反向轮流播放normalI alternate

	 
	 -->
	<body>
		<div class="wrap">
			<div class="box"></div>
		</div>
	</body>
</html>

html帧动画_帧动画