我正在使用iScroll5通过页面的各个部分滚动horizontal。这很好用,但是当我们试图将面板堆叠在左侧彼此顶部时,它们会相互通过。
到目前为止我做了什么:
问题在于面板永远不会粘在左边。我尝试了固定,粘性等,但它只是滚动。我在这里看到的唯一解决方案是将li
移到包装器之外。但这是一个棘手的解决方案"加上滚动机制(向后滚动以展开粘性窗格)将会出现问题。
我目前有这个
myScroll.on('scrollEnd', function () {
for(var i=0; i<cells; i++)
{
if(this.currentPage['pageX'] > i)
{
$("div.cell"+i).addClass("fixed").appendTo("#wrapper").css({"left":i*50, "zIndex":(cells-i)});
$("li.cell"+i).css({"width":50});
this.refresh();
//this.scrollToElement(document.querySelector('#scroller li:nth-child('+this.currentPage["pageX"]+')'), 100, (this.currentPage["pageX"]*50), null, IScroll.utils.ease.elastic)
}
else
{
$("div.cell"+i).removeClass("fixed").appendTo("li.cell"+i).removeAttr('style');
$("li.cell"+i).removeAttr('style');
}
}
//this.refresh();
});
这种作品。但它失去了抵消。当我打开刷新或滚动元素时,它可以工作,但它得到了bezerk。