• 在页面未加载完之前显示loading动画


    在页面未加载完之前显示loading动画

    这里有很多比这篇博客还优秀的loading动画源码

    我还参考这篇博客

    loading动画代码demo

    我的demo预览

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>use-pseudo-class</title>
        <style>
            .loading{
                 100px;
                height: 100px;
                border: 1px solid red;
                position: relative;
            }
            .loading::before,.loading::after{
                content: '';
                /*这里要加一个content,不然什么都没有*/
                position: absolute;
                 10px;
                height: 10px;
                background: #000;
                border-radius: 50%;
    
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                margin: auto;
                animation: toBig 1.5s linear infinite;
            }
            .loading::after{
                animation-delay: 0.75s;
                /*background-color: red;*/
            }
            @keyframes toBig {
                0%{
                     0;
                    height: 0;
                    opacity: 1;
                }
                100%{
                     50px;
                    height:50px;
                    opacity: 0;
                }
            }
        </style>
    </head>
    <body>
    <div class="loading">
    </div>
    </body>
    </html>

    加入到实际页面的使用方法

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>loading动画</title>
    
        <!--loading style-->
        <style>
            .loading{
                 100px;
                height: 100px;
                /*border: 1px solid red;*/
                position: relative;
            }
            .loading::before,.loading::after{
                content: '';
                /*这里要加一个content,不然什么都没有*/
                position: absolute;
                 0;
                height: 0;
                background: #000;
                border-radius: 50%;
    
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                margin: auto;
                animation: toBig 1s linear infinite;
            }
            .loading::after{
                animation-delay: 0.5s;
                /*background-color: red;*/
            }
            @keyframes toBig {
                0%{
                     0;
                    height: 0;
                    opacity: 1;
                }
                100%{
                     50px;
                    height:50px;
                    opacity: 0;
                }
            }
        </style>
        <style>
            .site-welcome{
                display: none;
                justify-content:center;
                align-items:center;
                
                /*里面内容居中使用flex在父元素添加三行代码display:flex;justify-content:center;
                align-items:center;*/
                position: fixed;
                top: 0;
                left: 0;
                 100%;
                height: 100%;
                /*上面四行代码,让这个fixed铺满整个画面*/
                background-color: #ccc;
                z-index: 1;
            }
            .site-welcome.active{
                display:flex;
            }
        </style>
    </head>
    
    <body>
        <div class="site-welcome active" id="siteWelcome">
            <div class="loading">
    
            </div>
        </div>
        
        //.
        //.
        //.
        //这里是其他代码
        
        <script>
           //当代码加载到这里的时候,执行这个script,当代码加载到这里,说明loading该结束了
    
            window.onload=function(){
                var siteWelcome = document.getElementById('siteWelcome');
                siteWelcome.classList.remove('active');
            }
        </script>
    </body>
    </html>

    本文转载于:猿2048➮https://www.mk2048.com/blog/blog.php?id=hcj112010kj

  • 相关阅读:
    面向对象反射、元类
    面向对象高级
    面向对象之封装
    抽象、继承、组合
    面向对象基础
    常用模块及其使用(二)
    常用模块及其使用
    模块及模块的使用
    drf框架之视图类、视图家族和路由组件
    drf框架群查接口的筛选组件之搜索过滤组件、排序过滤组件、分页器组件、django_filter插件
  • 原文地址:https://www.cnblogs.com/10manongit/p/13036892.html
Copyright © 2020-2023  润新知