Guest User

Untitled

a guest
Nov 21st, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>加载动画</title>
  6. <link rel="stylesheet" href="loading.css">
  7. <script type="text/javascript" src="libs/jquery-3.2.1.min.js"></script>
  8. <script>
  9. $(document).ready(function () {
  10. $(window).on('load', function () {
  11. $('body').removeClass('loading')
  12. .addClass('loaded');
  13. $('#loader-wrapper').remove();
  14. });
  15. });
  16. </script>
  17. </head>
  18. <body class="loading">
  19. <div id="loader-wrapper">
  20. <div class="loader">
  21. <div class="ball-clip-rotate-pulse">
  22. <div></div>
  23. <div></div>
  24. </div>
  25. </div>
  26. </div>
  27. <!-- 以上为加载框, 加载完成自动移除 -->
  28.  
  29.  
  30. </body>
  31. </html>
Add Comment
Please, Sign In to add comment