jqgal滚动定时器
我正在尝试向 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您只需触发点击事件即可:
You can just trigger the click event:
您只需将代码放入一个函数中并在两个地方使用它:
You just pull your code into a function and use it in two places:
我将其添加到脚本标签内的index.html 中。确实有窍门。 “i”是链接href
I added this to index.html inside script tags. Does the trick. "i" is the link href