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

纯CSS实现图片抖动

时间:2016-04-06 11:17:51      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:

实现方法:

1.将上文提到的以下JS内容删除:

$(".imagelogo").mouseover(function() {
	obj = $(this);
	i = 5;
	timer = null;
	clearInterval(timer);
    timer = setInterval(function(){    	
	    obj.css({"position":"relative","left":i+"px"});
		i = -i;
      },50);
});

$(".imagelogo").mouseout(function() {
	clearInterval(timer);
});

  

2.在CSS样式里加上以下内容:

@keyframes mylogo
{
from  {left: 5px;}
to  {left: -5px;}
}

@-moz-keyframes mylogo /* Firefox */
{
from  {left: 5px;}
to  {left: -5px;}
}

@-webkit-keyframes mylogo /* Safari 和 Chrome */
{
from  {left: 5px;}
to  {left: -5px;}
}

@-o-keyframes mylogo /* Opera */
{
from  {left: 5px;}
to  {left: -5px;}
}
.imagelogo {
	background: url(images/logo.png) no-repeat; 
	float: left;
	position:relative;
	width: 180px;
	height: 60px;
	margin: 15px 0px 0px 0px;
	padding: 0px;
	cursor: pointer;
	animation: mylogo 1s linear 0s infinite alternate;
	/* Firefox: */
	-moz-animation: mylogo 1s linear 0s infinite alternate;
	/* Safari 和 Chrome: */
	-webkit-animation: mylogo 1s linear 0s infinite alternate;
	/* Opera: */
	-o-animation: mylogo 1s linear 0s infinite alternate;
}

  

好了,有点像钟摆的样子了,上文的animation: mylogo 1s linear 0s infinite alternate是简写,展开后就是:

animation-name: mylogo ;
animation-duration: 1s;
animation-timing-function: linear;
animation-delay: 0s;
animation-iteration-count: infinite;
animation-direction: alternate;

  

 

纯CSS实现图片抖动

标签:

原文地址:http://www.cnblogs.com/freespider/p/5358159.html

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