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.
画像のdivのプリロード画像中央を表示したい。ただし、すべての画像はサイズが異なるため、プリロード画像を各画像の中央に表示することはできません。
前もってありがとう!
css を使用してこの問題を解決できます。ページ上のすべての画像にクラス「pre-loader」を追加し、css で記述します。
.pre-loader { background: #ccc url(loaderimageurl) center center no-repeat; }
次に、次のように js を使用します。
$("img").load(function () { $(this).removeClass("pre-loader"); });