首页 > 代码库 > CSS3 animation 的尝试

CSS3 animation 的尝试

下面是动画效果:

<style>.zoombie { width: 55px; height: 85px; background-image: url("http://image.mamicode.com/info/201612/20180110215210340585.png") }</style>
 

下面是源码:

<html>
<head>
<style type="text/css">
	.zoombie {
		width: 55px;
		height: 85px;
		animation: play 1s steps(10) infinite ;
	        background-image:url(http://image.mamicode.com/info/201612/20180110215210340585.png);
	}
	@keyframes play {
		from{
			background-position: 0px;
		}
		to{
			background-position: -550px;
		}
	}
</style>
</head>
<body>
	<div class="zoombie"></div>
</body>
</html>

使用的图片:

技术分享

 

CSS3 animation 的尝试