首页 > 网站 > 建站经验 > 正文

jquery显示loading、图片直到网页加载完成的方法

2019-11-02 14:44:01
字体:
来源:转载
供稿:网友

   本文实例讲述了jquery显示loading图片直到网页加载完成的方法。分享给大家供大家参考。具体实现方法如下:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 <!DOCTYPE html> <html class="no-js"> <head> <meta charset='UTF-8'> <title>Simple Loader</title> <style> /* This only works with JavaScript, if it's not present, don't show loader */ .no-js #loader { display: none; } .js #loader { display: block; position: absolute; left: 100px; top: 0; } </style> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script> <script src="https://github.com/Modernizr/Modernizr/raw/master/modernizr.js"></script> <script> // Wait for window load $(window).load(function() { // Animate loader off screen $("#loade
虾滚网[www.aikan.tv/special/xiagundianyingwang/]
r").animate({ top: -200 }, 1500); }); </script> </head> <body> <img src="download.png" id="loader"> <img src="http://farm6.static.flickr.com/5299/5400751421_55d49b2786_o.jpg"> </body> </html>

  希望本文所述对大家的jquery程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表