"Loader"
Bootstrap 3.0.0 Snippet by BlueCircle

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="loader"></div> <svg width="400" height="490"> <rect rx="50" ry="50" x="60" y="30" width="150" height="150" style="fill:blue;stroke:pink;stroke-width:50;opacity:0.5" /> </svg> </div> </div> </div>
.loader { border: 6px solid #fff; border-radius: 50%; border-top: 6px solid #3498db; width: 200px; height: 200px; -webkit-animation: spin 2s linear infinite; /* Safari */ animation: spin 2s linear infinite; } /* Safari */ @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

Related: See More


Questions / Comments: