animation - Isotope animating inserts from top-left of container -



animation - Isotope animating inserts from top-left of container -

for isotope container, whenever insert new item container... appears in top-left of container (so in position of first item) , animates moving downwards place should go based on sorts.

here illustration of happen though: http://jsfiddle.net/aaairc/h4zmv/5/. see in example, new item zooms in starting position going take within container.

i haven't been able replicate issue i'm seeing locally on jsfiddle yet, thought might have initial suggestion or point me in jsfiddle illustration enabling insert have nice zoom in functionality. default? related css?

also, not sure if relevant, container items of isotope instance or jpgs.

it had how specify css. when changed css on worked how expected like.

/**** isotope css3 transitions ****/ .isotope, .isotope .isotope-item { -webkit-transition-duration: 0.8s; -moz-transition-duration: 0.8s; transition-duration: 0.8s; } .isotope { -webkit-transition-property: height, width; -moz-transition-property: height, width; transition-property: height, width; } .isotope .isotope-item { -webkit-transition-property: -webkit-transform, opacity; -moz-transition-property: -moz-transform, opacity; 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; transition-duration: 0s; } /* end: recommended isotope styles */ /* disable css transitions containers infinite scrolling*/ .isotope.infinite-scrolling { -webkit-transition: none; -moz-transition: none; transition: none; }

animation insert jquery-isotope

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

c# - Can ProtoBuf-Net deserialize to a flat class? -

javascript - Change element in each JQuery tab to dynamically generated colors -