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

Popular posts from this blog

jasper reports - Fixed header in Excel using JasperReports -

media player - Android: mediaplayer went away with unhandled events -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -