css3 animation

-moz-      /* Firefox and other browsers that use the Mozilla browser engine */
-webkit-   /* Safari, Google Chrome and other browsers that use the Webkit engine*/
-o-        /* Opera browser (early) */ -ms- /* Internet Explorer (not necessarily) */



<div class="wrap">
    <div class="spinner">
      <div class="double-bounce1"></div>
      <div class="double-bounce2"></div>
    </div>
    <p>Desperately loading...</p>
  </div>

  

.wrap {
  width: 100vw;
  height: 100vh;
  background-color: rgba(255,255,255,.8);
  border-radius: 2vw;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
}

p {
  text-align: center;
  font-size: 24px;
}

.spinner {
  width: 50px;
  height: 50px;
  position: relative;
  margin: 65% auto;
  margin-bottom: 40px;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #facd2d;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-animation: bounce 2.0s infinite ease-in-out;
  animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@keyframes bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

  

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325300590&siteId=291194637