From 3f943c370ff9ada63432b6f0e1ff8629b2a565c6 Mon Sep 17 00:00:00 2001 From: David DeSandro Date: Sat, 24 Mar 2012 08:35:06 -0400 Subject: [PATCH] docs : animating : add no-transition styles Ref #170 --- _posts/docs/2010-12-09-animating.mdown | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/_posts/docs/2010-12-09-animating.mdown b/_posts/docs/2010-12-09-animating.mdown index 027cf64..7b83d54 100644 --- a/_posts/docs/2010-12-09-animating.mdown +++ b/_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