gpt4 book ai didi

javascript - Scroller 在 javascript 中不工作

转载 作者:行者123 更新时间:2023-11-29 21:13:18 37 4
gpt4 key购买 nike

我正在运行一个 javascript 来在图像放大时向下滚动图像,但滚动条不起作用这是脚本

    $(function(){
// Add a custom filter to recognize images from lorempixel (that don't end with ".jpg" or something similar)
$.tosrus.defaults.media.image = {
filterAnchors: function( $anchor ) {
return $anchor.attr( 'href' ).indexOf( 'cdn.shopify.com' ) > -1;
}
};

$('#example-2 a').tosrus({
pagination : {
add : true
},
caption : {
add : true
},
slides : {
scale : 'fill'
}
});
});

zoomed image that is not scrolling

最佳答案

试试这个

$('#event-list').scroll(function() {
var curScroll = $(this)[0].scrollTop,
maxScroll = $(this)[0].scrollHeight - $(this).height();

console.log(curScroll, ' :: ', maxScroll);

if ((curScroll >= maxScroll - 200) && !loading) {
loading = true;

$(this)[0].scrollTop = curScroll;

$('.loading').fadeIn('fast');

if (page <= $('.page').length) {
loadMore();
}
}

});

关于javascript - Scroller 在 javascript 中不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40669497/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com