[css3] Loading...

Costas

Administrator
Staff member
JavaScript:
<style>
#loader-wrapper{position: fixed; width: 100%; height: 100%; background: #fff; z-index: 10;}
.bubbles{text-align: center; position: absolute; left: 0; width: 100%; top: 50%; margin-top: -30px;}
.bubbles .title{color: #a1a1a1; font-size: 25px; line-height: 25px; margin-bottom: 50px; font-weight: 500;}
.bubbles span {display: inline-block; vertical-align: middle; width: 15px; height: 15px; background: #03b4ea; border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; animation: bubbly .9s infinite alternate;}
#bubble2 {animation-delay: .27s;}
#bubble3 {animation-delay: .54s;}

@-webkit-keyframes bubbly {
  0% {
    width: 15px;
    height: 15px;
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    width: 50px;
    height: 50px;
    opacity: 0.1;
    -webkit-transform: translateY(-32px);
  }
}
@keyframes bubbly {
  0% {
    width: 15px;
    height: 15px;
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    width: 50px;
    height: 50px;
    opacity: 0.1;
    transform: translateY(-32px);
  }
}
</style>

<div id="loader-wrapper">
        <div class="bubbles">
            <div class="title">loading</div>
            [B][/B]
            [B][/B]
            [B][/B]
        </div>
</div>
 
Top