javascript - Turn off Bootstrap's CSS3 transitions on progress bars -
anyone know way disable bootstrap's css3 transitions on progress bars? i'm updating them via javascript/jquery , don't want them doing animating.
this looked promising couldn't work: turn off css3 animation jquery?
info on progress bars: http://twitter.github.com/bootstrap/components.html#progress
you can turn off transition effects setting css transition
rule none
, so:
.progress .bar { -webkit-transition: none; -moz-transition: none; -ms-transition: none; -o-transition: none; transition: none; }
Comments
Post a Comment