jqgal滚动定时器

发布于 2024-08-09 02:49:45 字数 357 浏览 5 评论 0原文

我正在尝试向 jqgalscroll 插件添加一个计时器,该插件具有用于移动到图库中的下一张图像的功能

jqimg.click(function(){
var next = n.index + 1;
if((n.index +1) == el.totalChildres) {
    el.pagination.find('[href$=0]').click();
}
else {
    el.pagination.find('[href$=#'+ next+ ']').click();
}
});

,但我不确定如何从我在自己的页面中设置了 setInterval 函数。任何帮助将不胜感激

I'm trying to add a timer to the jqgalscroll plugin, the plugin has the function

jqimg.click(function(){
var next = n.index + 1;
if((n.index +1) == el.totalChildres) {
    el.pagination.find('[href$=0]').click();
}
else {
    el.pagination.find('[href$=#'+ next+ ']').click();
}
});

this is used to move to the next image in the gallery, but im not sure how i would go about calling it from the setInterval function that i have setup in my own page. any help would be appreciated

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

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

发布评论

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

评论(3

街角迷惘 2024-08-16 02:49:45

您只需触发点击事件即可:

var timer = setInterval(function() { jqimg.click(); }, 5000);

You can just trigger the click event:

var timer = setInterval(function() { jqimg.click(); }, 5000);
说谎友 2024-08-16 02:49:45

您只需将代码放入一个函数中并在两个地方使用它:

var myAction = function(){
   var next = n.index + 1;
   if((n.index +1) == el.totalChildres) {
      el.pagination.find('[href$=0]').click();
    }
    else {
        el.pagination.find('[href$=#'+ next+ ']').click();
    }
}

jqimg.click(myAction);
setInterval(myAction, 5000);

You just pull your code into a function and use it in two places:

var myAction = function(){
   var next = n.index + 1;
   if((n.index +1) == el.totalChildres) {
      el.pagination.find('[href$=0]').click();
    }
    else {
        el.pagination.find('[href$=#'+ next+ ']').click();
    }
}

jqimg.click(myAction);
setInterval(myAction, 5000);
怪我入戏太深 2024-08-16 02:49:45

我将其添加到脚本标签内的index.html 中。确实有窍门。 “i”是链接href

var i = 0;
var timer = setInterval(function() { 
    $('a[href="#'+i+'"]').click();
    i++;
    if(i == 6){
            i = 0; 
    }
}, 5000);

I added this to index.html inside script tags. Does the trick. "i" is the link href

var i = 0;
var timer = setInterval(function() { 
    $('a[href="#'+i+'"]').click();
    i++;
    if(i == 6){
            i = 0; 
    }
}, 5000);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文