gpt4 book ai didi

jquery - 根据 div 的现有位置为其设置动画

转载 作者:行者123 更新时间:2023-12-01 02:48:48 26 4
gpt4 key购买 nike

每次单击 .btn-arrow 按钮时,我都会尝试通过抓取 #content 的当前位置来为 div -1500px 制作动画

  var $offset = $('#content').offset.left()-1500;
$('.btn-arrow').click( function(){
$('#content').animate({marginLeft:$offset}); return false;
});

<div style="margin-left: 0px; width: 99999px;" id="content">content </div>

目前它不起作用,有人有什么想法吗?

最佳答案

您需要正确的语法:

 {marginLeft:'-=1500'}

(注意引号相对于当前值动画的-=

您不需要使用偏移量。

但我想你需要:

{left:'-=1500'}

在这种情况下

more here

关于jquery - 根据 div 的现有位置为其设置动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5338343/

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