Skip to content

Commit

Permalink
docs : animating : add no-transition styles
Browse files Browse the repository at this point in the history
  • Loading branch information
desandro committed Mar 24, 2012
1 parent 1abb534 commit 3f943c3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions _posts/docs/2010-12-09-animating.mdown
Expand Up @@ -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
Expand Down

0 comments on commit 3f943c3

Please sign in to comment.