Jquery加载器gif顺序加载
我想做的是有一个ajax加载器gif,它显示图像然后按顺序加载到页面中。
所以它会像这样工作。
ajax 加载程序显示 - 图像淡入 - ajax 加载程序淡出 - 然后移至下一个图像。
ajax 加载程序显示 - 图像淡入 - ajax 加载程序淡出 - 然后移至下一个图像。
ajax 加载程序显示 - 图像淡入 - ajax 加载程序淡出 - 然后移至下一个图像。
ajax 加载程序显示 - 图像淡入 - ajax 加载程序淡出 - 然后移至下一个图像。
在页面下方继续执行此操作。
这是我的代码。
<ul id="clients">
<li><img src="images/logos/clients_03.jpg" width="242" height="152" alt="Taylor Woodrow" /></li>
<li><img src="images/logos/clients_04.jpg" width="242" height="152" alt="BG Group" /></li>
<li><img src="images/logos/clients_05.jpg" width="242" height="152" alt="Canon" /></li>
<li><img src="images/logos/clients_06.jpg" width="227" height="152" alt="department" /></li>
<li><img src="images/logos/clients_08.jpg" width="242" height="164" alt="disney" /></li>
<li><img src="images/logos/clients_09.jpg" width="218" height="164" alt="xts" /></li>
<li><img src="images/logos/clients_10.jpg" width="223" height="164" alt="fisevr" /></li>
<li><img src="images/logos/clients_11.jpg" width="227" height="164" alt="hilti" /></li>
</ul>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js" type="text/javascript"></script>
<script>
$("ul#clients li").append('<img id="show" src="images/ajax-loader.gif" width="32" height="32" alt="fvdsv" />');
$("ul#clients li:eq(0)").show("fast", function () {
/* use callee so don't have to name the function */
$(this).next("ul#clients li").fadeIn("slow", arguments.callee);
});
所以它有点有效,但 ajax 加载程序只是一直显示任何帮助?
谢谢
What i am trying to do is have an ajax loader gif, that shows while the images then load into the page in sequence.
so it would work like this.
ajax loader show - image fadeIn - ajax loader fadeOut - then move onto next image.
ajax loader show - image fadeIn - ajax loader fadeOut - then move onto next image.
ajax loader show - image fadeIn - ajax loader fadeOut - then move onto next image.
ajax loader show - image fadeIn - ajax loader fadeOut - then move onto next image.
Keep doing that right down the page.
Here is my code.
<ul id="clients">
<li><img src="images/logos/clients_03.jpg" width="242" height="152" alt="Taylor Woodrow" /></li>
<li><img src="images/logos/clients_04.jpg" width="242" height="152" alt="BG Group" /></li>
<li><img src="images/logos/clients_05.jpg" width="242" height="152" alt="Canon" /></li>
<li><img src="images/logos/clients_06.jpg" width="227" height="152" alt="department" /></li>
<li><img src="images/logos/clients_08.jpg" width="242" height="164" alt="disney" /></li>
<li><img src="images/logos/clients_09.jpg" width="218" height="164" alt="xts" /></li>
<li><img src="images/logos/clients_10.jpg" width="223" height="164" alt="fisevr" /></li>
<li><img src="images/logos/clients_11.jpg" width="227" height="164" alt="hilti" /></li>
</ul>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js" type="text/javascript"></script>
<script>
$("ul#clients li").append('<img id="show" src="images/ajax-loader.gif" width="32" height="32" alt="fvdsv" />');
$("ul#clients li:eq(0)").show("fast", function () {
/* use callee so don't have to name the function */
$(this).next("ul#clients li").fadeIn("slow", arguments.callee);
});
So it kind off works but the ajax loader just shows all the time any help?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您在 img 中有 id=show 并将其附加到所有不正确 HTML 的图像。 Id 应该是唯一的。
如果你想在图像加载时显示ajax gif,并在加载图像后显示图像并隐藏gif,你应该使用如下内容:
使用代码:
Well firstly, you have id=show in img and you attach that to all images which is not proper HTML. Ids should be unique.
If you want to show the ajax gif while the image is loading and after it is loaded, show the image and hide the gif, you should use something like this:
Use the code: