我试图制作一种加载条,我已经做了但是它不起作用......谁可以帮助我?
<div id="loader" style="height: 2px; width: 0px; background: green;">
Test
</div>
<script>
$('#loader').animate({width:'100px'}, 15000);
</script>
谢谢!
编辑: 这个人正在工作
<div id="loader" style="height: 2px; width: 0px; background: green;">
</div>
<script>
$(document).ready(function(){
function loader(){$('#loader').animate({width:'0px'}, 1).animate({width:'468px'}, 15000, function() {loader()});}
loader();
});
</script>
感谢Pahnin
答案 0 :(得分:3)
http://jsfiddle.net/pahnin/d7hWD/1/
加载文档后启动动画
$(document).ready(function(){
$('#loader').animate({width:'100px'}, 15000);
});
编辑:
$(document).ready(function() {
// jQuery
});
上面的函数用于在加载所有dom元素之后运行你的jQuery代码,这包括像jQuery这样的库。
答案 1 :(得分:1)
答案 2 :(得分:0)
function startLoad(){
$('#loader').animate({width:'100px'}, 15000);
setTimeout(function(){
$('#loader').css({'width':'0'});
startLoad();
}, 15000);
}
$(document).ready(startLoad);