当用户单击自动滚动脚本时清除 setInterval

发布于 2024-12-10 04:00:41 字数 1246 浏览 1 评论 0原文

我正在编写一个自动滚动脚本,我正在使用 jquery 中的函数移动到菜单上单击的元素。我使用 setInterval 来单击菜单上的每个项目。到目前为止一切正常。但当我需要停止 setInterval 时,问题就出现了,我的意思是,如果用户单击其中一个元素,则停止 setInterval。

我有两个问题要问

  1. 这是进行自动滚动的正确方法吗?
  2. 如果不是,如果您能给我一些线索来做到这一点,我将非常感激。如果是正确的方法,如何知道点击事件是由用户触发的还是由脚本触发的?

出色地。感谢您的阅读。我正在使用的代码是下一个,正如我所说,可以正常循环滑块。多谢。正如旁注:对于客户请愿书,我无法使用 jquery 插件来创建滑块,因此我必须手动完成。

$('.slider-controls a').live('click',function(e){
            moveSlider($(this).attr('href'),e);

            return false;
        });

        function moveSlider(toDiv,elem){
            var nextPos = $(toDiv).position().top;
            $('.slider-total').animate({
                top: -nextPos
            }, 700);

            $('.slider-total div').removeClass('activo');
            $(toDiv).addClass('activo');
        }

        var autoSlider = setInterval(function(){
            var slideNext;

            if ( !($('.slider-total .activo').next().attr('id')) ){
                slideNext = '#' + $('.slider-total .post:first').attr('id');
            } else {
                slideNext = '#' + $('.slider-total .activo').next().attr('id');
            }

            $('a[href='+slideNext+']').click();
        },4000);

I'm working on an autoscroll script, I'm using a function in jquery to move to the clicked element on the menu. And I'm using a setInterval to click every item on the menu. Til now everything works ok. But the problem comes when I need to stop the setInterval, I mean, stop the setInterval if a user click one of the elements.

I have two issues or questions for yous:

  1. Is this the correct way to do an autoscroll?
  2. If is not, I'd really appreciate if you give me a little clue to do it. If it is the correct way, how to know if the click event was triggered by the user or by the script?

Well. Thanks for reading. The code I'm using is the next and, as I said, is working ok to loop trought the slider. THANKS A LOT. Just as a sidenote: for a client petition, I cannot use a jquery plugin to create the slider, so I have to do it manually.

$('.slider-controls a').live('click',function(e){
            moveSlider($(this).attr('href'),e);

            return false;
        });

        function moveSlider(toDiv,elem){
            var nextPos = $(toDiv).position().top;
            $('.slider-total').animate({
                top: -nextPos
            }, 700);

            $('.slider-total div').removeClass('activo');
            $(toDiv).addClass('activo');
        }

        var autoSlider = setInterval(function(){
            var slideNext;

            if ( !($('.slider-total .activo').next().attr('id')) ){
                slideNext = '#' + $('.slider-total .post:first').attr('id');
            } else {
                slideNext = '#' + $('.slider-total .activo').next().attr('id');
            }

            $('a[href='+slideNext+']').click();
        },4000);

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

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

发布评论

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

评论(1

如梦 2024-12-17 04:00:41

您可以通过调用 clearInterval() 并传递从 setInterval() 函数返回的间隔 ID 来清除间隔。在你的情况下它将是:

clearInterval(autoSlider);

You can clear interval by calling clearInterval() passing the id of the interval, returned from setInterval() function. In your case it will be:

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