好的,所以我知道这会给每个人带来问题,这也会给我带来麻烦.我在客户的网站上使用无限滚动插件,结合同位素插件顺序加载他们的产品,问题是因为他们有1000个产品,任何人浏览网站然后点击产品,当他们点击后退按钮它们将返回到顶部(或仅在第一页的折叠上方),这引起了很多问题.
我的标记如下:
$(window).load(function () {
var $container = $('.products-grid-wrap');
$container.imagesLoaded(function () {
$container.isotope({
itemSelector: '.products-grid-block',
filter: '*:not(.hidden), .products-grid-block',
animationEngine: 'best-available',
layoutMode: "perfectMasonry",
perfectMasonry: {
columnWidth: 280,
rowHeight: 310
}
});
$container.infinitescroll({
navSelector: '#page_nav', // selector for the paged navigation
nextSelector: '#page_nav a', // selector for the NEXT link (to page 2)
itemSelector: '.regular-product-block, .products-grid-block', // selector for all items you'll retrieve
pixelsFromNavToBottom: Math.round($(window).height() * 1.5),
bufferPx: Math.round($(window).height() * 1.5),
loading: {
finishedMsg: 'No more products to load.',
img: 'http://www.by-form.net/wp-content/uploads/2014/11/ajax-loader-big.gif'
}
},
// call Isotope as a callback
function (newElements) {
var $newElems = $(newElements);
$newElems.imagesLoaded(function () {
$container.isotope('insert', $newElems);
$('.products-grid-rollover-block').hide();
if(newElements.length > 0){
setTimeout(function () {
$container.infinitescroll('retrieve');
$('.products-grid-wrap').isotope('reLayout');
//$('.products-grid-wrap').isotope({
//sortBy: 'category',
//sortAscending: false });
}, 1000);
}
});
});
setTimeout(function () {
$container.infinitescroll('retrieve');
}, 3000);
});
});
任何解决方案或建议都将受到大力赞赏!
最佳答案 你可以尝试
scroll-frame.它有点旧可能是你的答案.这是使用它的
infinite scroll demo的链接.
scrollFrame将劫持用户点击与您传入的查询选择器匹配的元素,而不是重新加载页面,它将附加一个类似于模态的iframe,它位于视口顶部并指向元素的href.然后,它使用HTML5历史API来按预期进行后退按钮功能.