就像这个一样 - http://www.solasie.com/en/。此外,我希望动画每次都加载,而不是第一次加载。
以下是相关问题。
编辑 1
我尝试使用以下代码。它显示一个错误。
<html >
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<title>Page Title</title>
</head>
<body>
<div id="loading">
<img src="counting30ll6.gif" >
</div>
<script type="text/javascript">
$(window).load(function(){
$('#loading').delay(10000).queue(function(){ $(this).hide();$(this).dequeue(); });
</script>
</body>
</html>