2014-12-05 148 views
0

這裏是我使用的產品創建擴展盒我JS提琴:使用此代碼焦點選擇

http://jsfiddle.net/wpneily/vsnag7ja/

var $container = $('#iso-container'), 
    $items = $('.item'); 

$container.isotope({ 
itemSelector: '.item', 
masonry: { 
    columnWidth: 60 
}, 
getSortData : { 
    selected : function($item){ 
    // sort by selected first, then by original order 
    return ($item.hasClass('selected') ? -500 : 0) + $item.index(); 
    } 
}, 
sortBy : 'selected' 

}) 

$items.click(function(){ 
console.log('ee') 
var $this = $(this); 
// don't proceed if already selected 
var $previousSelected = $('.selected'); 
if (!$this.hasClass('selected')) { 
    $this.addClass('selected'); 
} 

$previousSelected.removeClass('selected'); 

// update sortData for new items size 
$container 
    .isotope('updateSortData', $this) 
    .isotope('updateSortData', $previousSelected) 
    .isotope(); 

}); 


$('.noclick').click(function(e){ 
console.log('dd') 
e.stopPropagation(); 
}); 

這只是偉大工程,如果用戶向下滾動並在當前「開放」選擇下選擇其中一個框,新選擇在上面查看。換句話說,新選定的產品框不在焦點中。我希望所選框不僅可以打開,而且還可以將頁面滾動到容器的頂部,在這種情況下,id =「iso-container」。任何人都可以請幫忙。

回答

0

試着在你$item.click處理程序的末尾添加下面的代碼:

$('html,body').animate({scrollTop: $("#iso-container").offset().top}, 'slow'); 

更新您的fiddle

+0

感謝你爲這個。我很感激。 – 2014-12-05 22:42:03

+0

@WarrenNeily工作嗎? – TheVillageIdiot 2014-12-06 02:45:12

+0

是的。謝謝。 – 2014-12-10 00:08:39