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

css3和js实现鼠标滑过图片微移动 平滑过渡

时间:2014-06-15 22:49:37      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   ext   width   html   

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>index</title>
	<script src="jquery-1.11.1.min.js"></script>
	

<body>

<div class="item">
	<a href="">
		<img src="11.jpg">
	</a>
</div>


<div class="item">
	<a href="">
		<img src="11.jpg">
	</a>
</div>

<style type="text/css">
.item{  position:relative; width:295px; height:190px;  overflow:hidden; border:1px solid;  margin:10px;}
.item a{ display:block;width:295px; height:190px;}
.item a img{
	-webkit-transition:all .3s ease;
	-moz-transition:all .3s ease;
	-ms-transition:all .3s ease;
	-o-transition:all .3s ease;
	transition:all .3s ease;
	position:absolute;
	left:0
}
.item a:hover img{ 
	position:absolute; left:-10px;
}
</style>
<script>
$(".item").bind("mouseenter", function(){
	$(this).find("img").stop(!0).animate({"left": "-10px"});
}).bind("mouseleave", function(){
	$(this).find("img").stop(!0).animate({"left": "0px"});
});
</script>
</body>
</html>

  

css3和js实现鼠标滑过图片微移动 平滑过渡,布布扣,bubuko.com

css3和js实现鼠标滑过图片微移动 平滑过渡

标签:style   class   blog   ext   width   html   

原文地址:http://www.cnblogs.com/1haojia/p/3785399.html

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