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

鼠标控制图片反方向移动

时间:2016-10-13 13:47:28      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:

css

.transformBox{
transform-style: preserve-3d;
-webkit-transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease-out;
-o-transition: all 0.5s ease-out;
transition: all 0.5s ease-out;
}

 html

<div class="col-lg-4 transformBox">
<div style="transform: translateZ(100px);">
<img src="images/bannerPic.png" />
</div>
</div>

js

$(‘.transformBox‘).mousemove(function (e) {
var xx = e.pageY/100;
var yy = e.pageX/100;
$(this).find(‘.aa‘).css({
"transform": "rotateX(" +xx+"deg) rotateY("+yy+"deg)"
//"transform":(+y)+"px"
});

});

 

鼠标控制图片反方向移动

标签:

原文地址:http://www.cnblogs.com/sentiment/p/5955991.html

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