There is a glyphicon-refresh under bootstrap, but it will not be able to customize the dynamic spin [rotation]. My example is provided below
.spin{-webkit-transform-origin: 50% 50%;transform-origin:50% 50%; -ms-transform-origin:50% 50%; /* IE 9 */-webkit-animation: spin .8s infinite linear;-moz-animation: spin .8s infinite linear;-o-animation: spin .8s infinite linear;-o-animation: spin .8s infinite linear;animation: spin .8s infinite linear;}@-webkit-keyframes spin {0% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}100% {-webkit-transform: rotate(359deg);transform: rotate(359deg);}}@keyframes spin {0% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}100% {-webkit-transform: rotate(359deg);transform: rotate(359deg);}}The call method is as follows
<span> </span>
The above is the Bootstrap Refresh Icon introduced to you by the editor. If you have any questions, please leave me a message and the editor will reply to everyone in time. Thank you very much for your support to Wulin.com website!