gpt4 book ai didi

javascript - 使用 jQuery 为 marginLeft 设置动画

转载 作者:技术小花猫 更新时间:2023-10-29 11:55:45 28 4
gpt4 key购买 nike

我想不出用 jQuery 为 marginLeft 设置动画。每次用户单击链接时,我都需要它减去 938px,这在我使用 .css() 时工作正常,但我不知道如何让它与 一起工作>.animate().

$("#full-wrapper #full").animate({
marginLeft, -=938px
}, 500);

谁能弄清楚为什么这不起作用?这是我的 CSS 版本:

$("#full-wrapper #full").css("marginLeft","-=938px");

我使用 CSS3 制作动画,但需要让它在旧版浏览器中运行。

最佳答案

您的代码中存在语法错误,因为您将对象中的参数传递给 animate() 您应该使用 : 而不是 ,来界定每个属性。试试这个:

$("#full-wrapper #full").animate({
marginLeft: '-=938px'
}, 500);

Example fiddle

关于javascript - 使用 jQuery 为 marginLeft 设置动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9229921/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com