tnblog
首页
视频
资源
登录

避免页面加载的时候出现空白页

4938人阅读 2020/6/11 23:20 总访问:689320 评论:0 收藏:0 手机
分类: 前端

在html页面未加载完成时会有一段空白,为了增强用户体验的话,需要在未加载完成时实现加载效果。
code:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>loading动画</title>
  8. <!--loading style-->
  9. <style>
  10. .loading{
  11. width: 100px;
  12. height: 100px;
  13. /*border: 1px solid red;*/
  14. position: relative;
  15. }
  16. .loading::before,.loading::after{
  17. content: '';
  18. /*这里要加一个content,不然什么都没有*/
  19. position: absolute;
  20. width: 0;
  21. height: 0;
  22. background: #000;
  23. border-radius: 50%;
  24. top: 0;
  25. left: 0;
  26. right: 0;
  27. bottom: 0;
  28. margin: auto;
  29. animation: toBig 1s linear infinite;
  30. }
  31. .loading::after{
  32. animation-delay: 0.5s;
  33. /*background-color: red;*/
  34. }
  35. @keyframes toBig {
  36. 0%{
  37. width: 0;
  38. height: 0;
  39. opacity: 1;
  40. }
  41. 100%{
  42. width: 50px;
  43. height:50px;
  44. opacity: 0;
  45. }
  46. }
  47. </style>
  48. <style>
  49. .site-welcome{
  50. display: none;
  51. justify-content:center;
  52. align-items:center;
  53. /*里面内容居中使用flex在父元素添加三行代码display:flex;justify-content:center;
  54. align-items:center;*/
  55. position: fixed;
  56. top: 0;
  57. left: 0;
  58. width: 100%;
  59. height: 100%;
  60. /*上面四行代码,让这个fixed铺满整个画面,下面的背景色可以不要,不然每次加载都有这个遮罩层的背景一闪而已影响用户体验*/
  61. background-color: #ccc;
  62. z-index: 1;
  63. }
  64. .site-welcome.active{
  65. display:flex;
  66. }
  67. </style>
  68. </head>
  69. <body>
  70. <div class="site-welcome active" id="siteWelcome">
  71. <div class="loading">
  72. </div>
  73. </div>
  74. <script>
  75. //当代码加载到这里的时候,执行这个script,当代码加载到这里,说明loading该结束了
  76. window.onload=function(){
  77. var siteWelcome = document.getElementById('siteWelcome');
  78. siteWelcome.classList.remove('active');
  79. }
  80. </script>
  81. </body>
  82. </html>

遮罩层的z-index可以根据实际情况设定
遮罩层的背景颜色可以去掉,不然页面每次打开的时候都有一个遮罩层的背景色一闪而过,虽然感觉还是有点影响用户体验


欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)

评价
如果有缘,错过了还会重来,如果无缘,相遇了也会离开
排名
9
文章
115
粉丝
5
评论
5
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术