1

就像这个一样 - http://www.solasie.com/en/。此外,我希望动画每次都加载,而不是第一次加载。

以下是相关问题。

使用 JQuery 加载页面时显示动画

如何在 Flash 加载之前加载动画 gif

编辑 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>
4

1 回答 1

1

In fact, this animation is running after the page loads. Wrap all your animation code into a function and then bind it on onLoad event. This will make the impression that you want.

EDIT Here is a little jsfiddle that might give you some direction.

jsfiddle.net/gBspY/

于 2013-02-16T13:47:32.243 回答