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 }); });