loading-css

简介: loading-css

效果如下:

20171019173917088.gif

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>定时器的进度条</title>
    <style>
        .loading {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            z-index: 100;
            background: #fff;
        }
        .loading .pic {
            width: 50px;
            height: 60px;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
        }
        .loading .pic i{
            display: block;
            float:left;
            width:6px;
            height:50px;
            background:#399;
            margin:0 2px;
            transform:scaleY(0.4);
            animation:load 1.2s infinite;
        }
        .loading .pic i:nth-child(2){
            animation-delay:0.1s;
        }
        .loading .pic i:nth-child(3){
            animation-delay:0.2s;
        }
        .loading .pic i:nth-child(4){
            animation-delay:0.3s;
        }
        .loading .pic i:nth-child(5){
            animation-delay:0.4s;
        }
        @keyframes load{
            0%,40%,100%{
                transform:scaleY(0.4)
            }
            20%{
                transform:scaleY(1)
            }
        }
    </style>
</head>
<body>
<div class="loading">
    <div class="pic">
        <i></i><i></i><i></i><i></i><i></i>
</div></div>
</body>
</html>

其他问题:

兼容性

通过网址 :

http://autoprefixer.github.io
.loading {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            z-index: 100;
            background: #fff;
        }
        .loading .pic {
            width: 50px;
            height: 60px;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
        }
        .loading .pic i{
            display: block;
            float:left;
            width:6px;
            height:50px;
            background:#399;
            margin:0 2px;
            -webkit-transform:scaleY(0.4);
                -ms-transform:scaleY(0.4);
                    transform:scaleY(0.4);
            -webkit-animation:load 1.2s infinite;
                    animation:load 1.2s infinite;
        }
        .loading .pic i:nth-child(2){
            -webkit-animation-delay:0.1s;
                    animation-delay:0.1s;
        }
        .loading .pic i:nth-child(3){
            -webkit-animation-delay:0.2s;
                    animation-delay:0.2s;
        }
        .loading .pic i:nth-child(4){
            -webkit-animation-delay:0.3s;
                    animation-delay:0.3s;
        }
        .loading .pic i:nth-child(5){
            -webkit-animation-delay:0.4s;
                    animation-delay:0.4s;
        }
        @-webkit-keyframes load{
            0%,40%,100%{
                -webkit-transform:scaleY(0.4);
                        transform:scaleY(0.4)
            }
            20%{
                -webkit-transform:scaleY(1);
                        transform:scaleY(1)
            }
        }
        @keyframes load{
            0%,40%,100%{
                -webkit-transform:scaleY(0.4);
                        transform:scaleY(0.4)
            }
            20%{
                -webkit-transform:scaleY(1);
                        transform:scaleY(1)
            }
        }
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>定时器的进度条</title>
    <style>
        .loading {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            z-index: 100;
            background: #fff;
        }
        .loading .pic {
            width: 50px;
            height: 60px;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
        }
        .loading .pic i{
            display: block;
            float:left;
            width:6px;
            height:50px;
            background:#399;
            margin:0 2px;
            -webkit-transform:scaleY(0.4);
            -ms-transform:scaleY(0.4);
            transform:scaleY(0.4);
            -webkit-animation:load 1.2s infinite;
            animation:load 1.2s infinite;
        }
        .loading .pic i:nth-child(2){
            -webkit-animation-delay:0.1s;
            animation-delay:0.1s;
        }
        .loading .pic i:nth-child(3){
            -webkit-animation-delay:0.2s;
            animation-delay:0.2s;
        }
        .loading .pic i:nth-child(4){
            -webkit-animation-delay:0.3s;
            animation-delay:0.3s;
        }
        .loading .pic i:nth-child(5){
            -webkit-animation-delay:0.4s;
            animation-delay:0.4s;
        }
        @-webkit-keyframes load{
            0%,40%,100%{
                opacity:0.7;
                -webkit-transform:scaleY(0.4);
                transform:scaleY(0.4)
            }
            20%{
                opacity:1;
                -webkit-transform:scaleY(1);
                transform:scaleY(1)
            }
        }
        @keyframes load{
            0%,40%,100%{
                opacity:0.7;
                -webkit-transform:scaleY(0.4);
                transform:scaleY(0.4)
            }
            20%{
                opacity:1;
                -webkit-transform:scaleY(1);
                transform:scaleY(1)
            }
        }
    </style>
</head>
<body>
<div class="loading">
    <div class="pic">
        <i></i><i></i><i></i><i></i><i></i>
</div></div>
<script>
</script>
</body>
</html>
目录
相关文章
|
6月前
|
XML 前端开发 数据格式
CSS应用
CSS应用
51 0
|
前端开发
css实现帘幕效果
css实现帘幕效果
81 0
|
2月前
|
前端开发
内嵌式CSS
【9月更文挑战第2天】内嵌式CSS。
32 3
|
存储 前端开发 安全
CSS
什么是 CSS? CSS 指层叠样式表 (Cascading Style Sheets) 样式定义如何显示 HTML 元素 样式通常存储在样式表中 把样式添加到 HTML 4.0 中,是为了解决内容与表现分离的问题 外部样式表可以极大提高工作效率 外部样式表通常存储在 CSS 文件中 多个样式定义可层叠为一个
132 0
|
6月前
|
前端开发
CSS总结干货
行内样式表(行内式) 行内样式表(内联样式表)是在元素标签内部的 style 属性中设定 CSS 样式。适合于修改简单样式. ​ 语法:
|
Web App开发 前端开发 iOS开发
【CSS3】
【CSS3】
254 3
|
前端开发
CSS内嵌式
CSS内嵌式
59 0
|
前端开发 JavaScript C++
初识Windi Css
初识Windi Css
816 0
|
前端开发 Ruby 容器
CSS3总结
CSS3总结!
CSS3总结