如何使用 jQuery 旋转动画 div?
我有一个 jQuery 动画,其中图片从下到左滑动。现在我想使用 -ms-transform:rotate(90deg)
旋转这个 div。旋转这个 div 后,动画就被破坏了。
动画应该在左侧有一个固定的信息框,在右侧有从左向右滑动的图片。动画容器旋转 90 度。
我的动画:
$('#divImg0').animate({ "marginTop": -this.screenHeight, "Height": 0 }, "slow");
HTML:
<div style="-ms-transform: rotate(90deg); position: absolute; right: 0; bottom: 0;">
<div id="PictureContainer" style="padding: 0; margin: 0;"> </div>
</div>
<div id="InfoBox" style="position: absolute; top: 0; height: 768px; width: 200px; padding: 0; margin: 0; background-color: #000; z-index: 99;">
<div style="-ms-transform: rotate(90deg);">wasd asd asd</div>
</div>
I have a jQuery animation where pictures slide from bottom to left. Now I want to rotate this div with -ms-transform: rotate(90deg)
. After rotating this div, the animation is broken.
The animation should have a fixed infobox on the left side and pictures which slide from left to right on the right side. The Animation Container is rotated 90deg.
My animation:
$('#divImg0').animate({ "marginTop": -this.screenHeight, "Height": 0 }, "slow");
HTML:
<div style="-ms-transform: rotate(90deg); position: absolute; right: 0; bottom: 0;">
<div id="PictureContainer" style="padding: 0; margin: 0;"> </div>
</div>
<div id="InfoBox" style="position: absolute; top: 0; height: 768px; width: 200px; padding: 0; margin: 0; background-color: #000; z-index: 99;">
<div style="-ms-transform: rotate(90deg);">wasd asd asd</div>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该会有所帮助。(预计 Internet Explorer 和 Opera)
http://www.zachstronaut.com/posts/2009/02/17/animate-css-transforms-firefox-webkit.html
this should helpful.(expect internet explorer and opera)
http://www.zachstronaut.com/posts/2009/02/17/animate-css-transforms-firefox-webkit.html