0
如何在Framework7中使用滾動事件。顯示滾動到框架上的頂部按鈕7
$("#scrolltotop").click(function(){
$$('.page-content').scrollTop(0, 600);
})
滾動到頂部功能工作正常,但我想隱藏它從用戶,直到他滾動。
更新: -
$(document).on('scroll', '.views', function(){
console.log('scrolling');
}, true);
$(window).scroll(function(){
$('#scrolltotop').show();
});
這是不在我的情況下工作。 '窗口滾動'沒有任何反應。 – Santosh
當我編輯我的答案時,試着將滾動功能放在就緒功能中。 –