码迷,mamicode.com
首页 > Web开发 > 详细

CSS3 animation 的尝试

时间:2016-12-30 13:26:09      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:ima   text   play   rom   效果   body   png   url   图片   

下面是动画效果:

 

下面是源码:

<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 的尝试

标签:ima   text   play   rom   效果   body   png   url   图片   

原文地址:http://www.cnblogs.com/diaoyan/p/6236221.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!