gpt4 book ai didi

javascript - 我想使用 jquery 左右移动按钮

转载 作者:行者123 更新时间:2023-11-28 10:57:34 31 4
gpt4 key购买 nike

我可以将按钮移动到左侧,但之后我如何才能再次将其移动到右侧。我也可以在这里使用延迟吗?

这是我尝试过的代码:

  $(document).ready(function () {
example_animate(10);


});

function example_animate(px) {

$('#Button1').animate({
'marginLeft': px

});
}

最佳答案

你可以使用这个,它对我来说非常有效,它会不断地来回移动你的元素,并且你还可以改变动画速度。

function animatethis(targetElement, speed) {
$(targetElement).animate({ marginLeft: "+=10px" },
{
duration: speed,
complete: function () {
targetElement.animate({ marginLeft: "-=10px" },
{
duration: speed,
complete: function () {
animatethis(targetElement, speed);
}
});
}
)};
}

用它来实现:

animatethis($('#controlid'), 1500);

关于javascript - 我想使用 jquery 左右移动按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17235379/

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