HTML简单动画制作

HTML简单动画制作(圆移动变色)


<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>title>
	<style>
		.circle{
			width: 100px;
			height: 100px;
			border-radius: 50%;
			position: absolute;
			background-color: red;

			animation-name: x;
			animation-timing-function: linear;
			animation-iteration-count: infinite;
			animation-duration: 7s;
			animation-direction: alternate;
		}

		.circle:hover{
			animation-play-state: paused;
		}

		@keyframes x{
			0%{
				left: 0px;
			}
			18%{
				left: 200px;
				background-color: orange;
			}
			36%{
				left: 400px;
				background-color: yellow;
			}
			54%{
				left: 600px;
				background-color: lightgreen;
			}
			72%{
				left: 800px;
				background-color: teal;
			}
			85%{
				left: 1000px;
				background-color: lightblue;
			}
			100%{
				left: 1200px;
				background-color: purple;
			}
		}
	style>
head>
<body>
	<div class="circle">
		
	div>
body>
html>

HTML简单动画制作_第1张图片

这就是以上代码展现出的动画效果

下一篇博客写一个相对更复杂一点的动画页面~想你们哦 小可爱们 嘻嘻~

HTML简单动画制作_第2张图片

你可能感兴趣的:(HTML)