jQuery animate({left:"+=10"}) 不工作

发布于 2024-11-02 08:51:10 字数 548 浏览 0 评论 0 原文

<script type="text/javascript" src="./Scripts/jquery-1.5.1.min.js"></script>
<script type='text/javascript' >
    $(document).ready(function () {
        $("#start").animate({ left: "+=10px" }, 1000)
            .animate({ left: "-5000px" }, 1000);
    });
</script>

<p id="start">this is some text that i am going to animate </p>

我在这里绞尽脑汁为什么这没有动画。如果我将 left 更改为 marginLeft 它将按预期工作并显示动画。但我不确定为什么 left 不这样做。

谁能解释一下吗?我见过许多其他脚本在做类似的事情。

<script type="text/javascript" src="./Scripts/jquery-1.5.1.min.js"></script>
<script type='text/javascript' >
    $(document).ready(function () {
        $("#start").animate({ left: "+=10px" }, 1000)
            .animate({ left: "-5000px" }, 1000);
    });
</script>

<p id="start">this is some text that i am going to animate </p>

I am racking my brain here as to why this doesn't animate. If I change left to marginLeft it will work as expected and animates. But i am not sure why left doesn't.

Can anyone explain please? I have seen many other scripts doing something similar.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

春夜浅 2024-11-09 08:51:10

为了使定位工作,您需要通过设置 position css 属性来启用它。

将其设置为固定绝对相对即可工作(取决于您尝试实现的目标

引用自position MDC 文档 财产。

初始值静态

静态
正常行为。 toprightbottomleft 属性不
申请。

For positioning to work, you need to have enabled it by setting the position css property.

Set it to fixed or absolute or relative to work (depending on what you try to achieve)

Quoting from the specs of the position MDC docs property.

Initial value : static

and

static
Normal behavior. The top, right, bottom, and left properties do not
apply.

ぇ气 2024-11-09 08:51:10

您将此

的位置设置为 absolute

例如:p{position:absolute;},否则使用 marginLeft code> 而不是 left

You set the position of this <p> to absolute

like: p{position:absolute;} otherwise use marginLeft instead of left

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