zoukankan      html  css  js  c++  java
  • loading

    HTML部分:

    <div id="loading" class="loading position">
      <div class="spinner">
        <div class="bounce1"></div>
        <div class="bounce2"></div>
        <div class="bounce3"></div>
      </div>
      <p>loading...</p>
    </div>

    css部分:

    .loading{text-align: center; left:50%; font-size: 30px; z-index: 1;}
    #loading{ 100%; top:45%; margin-left: -50%;}
    .loading p{color: #ff9244; font-weight: bold; font-family: Arial; font-size: 24px; }
    .spinner { margin: 0 auto; 150px; text-align: center; }
    .spinner > div { 30px; height: 30px; background-color:#ff9244; border-radius: 100%; display: inline-block; -webkit-animation: bouncedelay 1.4s infinite ease-in-out; animation: bouncedelay 1.4s infinite ease-in-out; -webkit-animation-fill-mode: both; animation-fill-mode: both; }
    .spinner .bounce1 { -webkit-animation-delay: -0.32s; animation-delay: -0.32s; }
    .spinner .bounce2 { -webkit-animation-delay: -0.16s; animation-delay: -0.16s;}
    @-webkit-keyframes bouncedelay {
      0%, 80%, 100% { -webkit-transform: scale(0.0) }
      40% { -webkit-transform: scale(1.0) }
    }
    @keyframes bouncedelay {
      0%, 80%, 100% { transform: scale(0.0); -webkit-transform: scale(0.0);}
      40% { transform: scale(1.0); -webkit-transform: scale(1.0);}
    }

  • 相关阅读:
    爬虫大作业
    熟悉常用的HDFS操作
    数据结构化和保存
    爬取全部校园新闻
    爬取校园新闻
    Google布隆过滤器
    谷歌json和对象转换
    postgresql和postgis
    json和实体类互相转换
    Linux安装docker-compose
  • 原文地址:https://www.cnblogs.com/Cloudloong/p/9562679.html
Copyright © 2011-2022 走看看