Browse Source

docs : animating : add no-transition styles

Ref #170
pull/183/head
David DeSandro 13 years ago
parent
commit
3f943c370f
  1. 12
      _posts/docs/2010-12-09-animating.mdown

12
_posts/docs/2010-12-09-animating.mdown

@ -53,6 +53,18 @@ To enable animation with CSS transitions, you'll need the following code in your
transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-ms-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
{% endhighlight %}
## Variations

Loading…
Cancel
Save