Thank you for your responses.
I use the -moz option and remove the "-" of -animation character
This is the final code:
/ *********** HTML ********************** > /
<div class="container">
<h3>Animated button</h3>
<button class="btn btn-lg btn-warning">
<span class="glyphicon glyphicon-refresh glyphicon-refresh-animate"></span>
Loading...
</button>
</div>
/ *********** CSS ********************* > /
@import url('http://getbootstrap.com/dist/css/bootstrap.css');
.glyphicon-refresh-animate {
-moz-animation: spin-moz .7s infinite linear;
-webkit-animation: spin-webkit .7s infinite linear;
animation: spin .7s infinite linear;
}
@-moz-keyframes spin-moz {
from { -moz-transform: rotate(0deg);}
to { -moz-transform: rotate(360deg);}
}
@-webkit-keyframes spin-webkit {
from { -webkit-transform: rotate(0deg);}
to { -webkit-transform: rotate(360deg);}
}
@keyframes spin {
from { transform: scale(1) rotate(0deg);}
to { transform: scale(1) rotate(360deg);}
}