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.
ヘッダーに非常に微妙なアニメーションがあります。最初にページをロードするとき、またはキャッシュをクリアするために cmd+shift+r (mac) で更新するとき、jQuery は実際には DOM の準備が整うのを待っていないようです。通常の html/css がすべてポップアップする前に、アニメーションが開始されます。
(document).ready が実際に行うことを正確に誤解しているだけですか?
DOMContentLoaded は DOM の準備が整うと発生しますが、必ずしもすべての CSS と画像の読み込みが完了するとは限りません。あなたがそれを望むなら、より良い選択肢は$(window).on('load',function(){...});
$(window).on('load',function(){...});