filtering - Masonry / Isotope Jquery Plugin Filter -


evening all

i having issue isotope jquery plugin - filtering.

i have created sample page here

http://www.csr500.co.uk/websites/v9/preview.html

now issue when filter using buttons in top right of page, filtering works, non selected items / elements fade out , page sort out, ie selected items reorder themselves, jump place, dont like.

having done research appears though .masonry('reload') not able work out place code.

my isotope code located right @ bottom of page.

thanking in advance, sure me being bit dim.

cheers

cameron

add css rules stylesheet file:

.isotope, .isotope .isotope-item {   /* change duration value whatever */   -webkit-transition-duration: 0.8s;      -moz-transition-duration: 0.8s;       -ms-transition-duration: 0.8s;        -o-transition-duration: 0.8s;           transition-duration: 0.8s; }  .isotope {   -webkit-transition-property: height, width;      -moz-transition-property: height, width;       -ms-transition-property: height, width;        -o-transition-property: height, width;           transition-property: height, width; }  .isotope .isotope-item {   -webkit-transition-property: -webkit-transform, opacity;      -moz-transition-property:    -moz-transform, opacity;       -ms-transition-property:     -ms-transform, opacity;        -o-transition-property:      -o-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;       -ms-transition-duration: 0s;        -o-transition-duration: 0s;           transition-duration: 0s; } 

for more info read here: http://isotope.metafizzy.co/docs/animating.html


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -