Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好我正在将easyslider插件集成到我的网站中,我希望有人会遇到我的问题,我正在使用它的分页版本,所以我可以在幻灯片中导航到任何图像,但是使用分页器然后暂停幻灯片,有谁知道我可以如何阻止它暂停并从选定的图像中携带一张。
源代码可在此处获得
意识到这是一个旧线程,但这是我为修复它所做的......
在第 160 行左右更改:
default: t = dir; break;
对此:
default: t = parseInt(dir); break;
在第 207 行附近插入:
if(options.numeric){;timeout = setTimeout(function(){animate("next",false);},diff*options.speed+options.pause);};
为我工作!