admin管理员组文章数量:1342913
I am trying to animate a glyphicon-refresh
icon so that when I click on the icon it should rotate. I am trying to do this using CSS3, but it is not working properly.
Here is my markup:
<a id="update" href="#"><i class="glyphicon glyphicon-refresh"></i></a>
Here is my css:
<style>
.glyphicon-refresh-animate {
animation-name: rotateThis;
animation-duration: .5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes "rotateThis" {
from { transform: scale( 1 ) rotate( 0deg ); }
to { transform: scale( 1 ) rotate( 360deg ); }
}
</style>
Here is my JS:
<script type="text/javascript">
$( document ).ready( function() {
$( "#update" ).on( "click", function( e ) {
var $icon = $( this ).find( ".glyphicon glyphicon-refresh" ),
animateClass = "glyphicon-refresh-animate";
$icon.addClass( animateClass );
// setTimeout is to indicate some async operation
window.setTimeout( function() {
$icon.removeClass( animateClass );
}, 2000 );
});
});
</script>
Any help, or an alternative approach, would be appreciated.
I am trying to animate a glyphicon-refresh
icon so that when I click on the icon it should rotate. I am trying to do this using CSS3, but it is not working properly.
Here is my markup:
<a id="update" href="#"><i class="glyphicon glyphicon-refresh"></i></a>
Here is my css:
<style>
.glyphicon-refresh-animate {
animation-name: rotateThis;
animation-duration: .5s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes "rotateThis" {
from { transform: scale( 1 ) rotate( 0deg ); }
to { transform: scale( 1 ) rotate( 360deg ); }
}
</style>
Here is my JS:
<script type="text/javascript">
$( document ).ready( function() {
$( "#update" ).on( "click", function( e ) {
var $icon = $( this ).find( ".glyphicon glyphicon-refresh" ),
animateClass = "glyphicon-refresh-animate";
$icon.addClass( animateClass );
// setTimeout is to indicate some async operation
window.setTimeout( function() {
$icon.removeClass( animateClass );
}, 2000 );
});
});
</script>
Any help, or an alternative approach, would be appreciated.
Share Improve this question edited Jan 26, 2017 at 23:38 mshell_lauren 5,2364 gold badges30 silver badges36 bronze badges asked Mar 19, 2014 at 10:18 RaghavendraRaghavendra 2794 gold badges12 silver badges25 bronze badges2 Answers
Reset to default 13First: Your jQuery selector is wrong:
.glyphicon glyphicon-refresh
has to be
.glyphicon.glyphicon-refresh
Second: You should prefix all animate
properties, the keyframes
keyword and the transform
property with vendor prefixes. (Only Firefox and IE10+ support without prefix. http://caniuse./#feat=css-animation) For example for Safari and Chrome:
.glyphicon-refresh-animate {
-webkit-animation-name: rotateThis;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
@-webkit-keyframes "rotateThis" {
from {
-webkit-transform: rotate( 0deg );
}
to {
-webkit-transform: rotate( 360deg );
}
}
http://jsfiddle/DX4AJ/ This fiddle only works in Safari and Chrome!
If allowed using fontawsome, there is an out-of-box solution with the fa-spin
class.
本文标签: javascriptAnimating Glyphicon on clickStack Overflow
版权声明:本文标题:javascript - Animating Glyphicon on click - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743599660a2508391.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论