我在我的网站上使用 jQuery Isotope 来加载图像墙。我的工作正常,但我想添加一些额外的东西,但我在他们的网站上找不到任何东西......
当浏览器窗口调整大小时,我希望它在重新排序图像时随机播放。
这可以做到吗?
这就是我到目前为止所拥有的:
(function($) {
$(document).ready(function() {
var $container = $('#isotope-container');
$container.isotope({
itemSelector: '.isotope-element',
sortBy : 'random' // THIS IS NOT WORKING TO SORT
});
var $optionSets = $('#isotope-options .option-set'),
$optionLinks = $optionSets.find('a');
$optionLinks.click(function(){
var $this = $(this);
// don't proceed if already selected
if ( $this.hasClass('selected') ) {
return false;
}
var $optionSet = $this.parents('.option-set');
$optionSet.find('.selected').removeClass('selected');
$this.addClass('selected');
var options = {},
key = $optionSet.attr('data-option-key'),
value = $this.attr('data-option-value');
// parse 'false' as false boolean
value = value === 'false' ? false : value;
options[ key ] = value;
if ( key === 'layoutMode' && typeof changeLayoutMode === 'function' ) {
// changes in layout modes need extra logic
changeLayoutMode( $this, options )
} else {
// otherwise, apply new options
$container.isotope( options );
}
return false;
});
$('.isotope-element img').each(function(){
var $this = $(this);
setTimeout(function(){
$this.fadeIn(Math.floor(Math.random()*1500));
}, Math.floor(Math.random()*1500));
}
);
});
})(jQuery);
对此的任何帮助将不胜感激。
谢谢 C