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.
有没有办法为视差站点创建一个加载器,该加载器会等到所有 dom 元素都加载完毕后再触发函数?
我创建了一个视差站点的 IOS 版本 - 一切正常 - 但由于该站点包含许多大图像,因此可以在所有图像加载之前触发动画..
有什么建议么?
你可以这样做:
$(function(){ var $imgs = $('img'); var cnt = $imgs.length; $imgs.load(function(){ cnt--; if(cnt === 0) //load parallax here }); });