html jQuery的で画像のプリローダー
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html jQuery的で画像のプリローダー相关的知识,希望对你有一定的参考价值。
//javascript
$(function () {
$('.imgBox img').hide();
});
var i = 0;
var int=0;
$(window).bind("load", function() {
var int = setInterval("doThis(i)",500);
});
function doThis() {
var images = $('img').length;
if (i >= images) {
clearInterval(int);
}
$('img:hidden').eq(0).fadeIn(500);
i++;
}
//css
.imgBox {
background:url(./images/loading.gif) 50% 50% no-repeat;
width: 300px;
height: 226px;
display: inline-block;
}
//html
<div class="imgBox">
<img class="imgBox" src="http://lorempixel.com/500/250/nightlife/">
</div>
<div class="imgBox">
<img class="imgBox" src="http://lorempixel.com/500/250/cats/">
</div>
以上是关于html jQuery的で画像のプリローダー的主要内容,如果未能解决你的问题,请参考以下文章
html jQuery的でスムーズリンク(2)
html jQuery的でモーダルウィンドウ
html jQuery的でアコーディオンパネル
html JQuery的でコピーライトの年号を自动更新
ini nginx的で特定のドメインのみ动作する画像キャッシュサーバ用的conf
text jquery的でブラウザ/ユーザーエージェント判定