Prev Demo
Bootstrap
>
Wait Icon
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" /> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script> <style> .glyphicon-refresh-animate { -animation: spin .7s infinite linear; -webkit-animation: spinWebkit .7s infinite linear; -moz-animation: spinMoz .7s infinite linear; } @-webkit-keyframes spinWebkit { from { -webkit-transform: rotate(0deg);} to { -webkit-transform: rotate(360deg);} } @keyframes spinMoz { from { transform: scale(1) rotate(0deg);} to { transform: scale(1) rotate(360deg);} } @keyframes spin { from { transform: scale(1) rotate(0deg);} to { transform: scale(1) rotate(360deg);} } </style> </head> <body> <h1>Wait Icon</h1> <br/> <br/> <br/> <p style="padding-left:50px;"> <span class="glyphicon glyphicon-refresh glyphicon-refresh-animate"></span> </p> </body> </html>
Note: We DO NOT save your trial code in our database.
Output