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.
我正在使用 jQuery Galleria 插件,并想在调用 jQuery 插件的下一个函数后进行一些操作。有什么方法可以在 jQuery Galleria 插件的下一个函数执行后调用我自己的函数。在这方面的任何帮助都会非常有用。
你可以使用这个loadfinish事件,它
loadfinish
每次 Galleria 完成加载图像时触发
所以
Galleria.ready(function() { this.bind("loadfinish", function(e) { // do what you want here }); });
活动文档在这里