如何使用 jQuery 旋转动画 div?

发布于 2024-11-09 21:53:33 字数 751 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文