You've already forked qlg.tsgz.moe
Init Repo
This commit is contained in:
14
static/app2/js/scrollToTop.js
Executable file
14
static/app2/js/scrollToTop.js
Executable file
@ -0,0 +1,14 @@
|
||||
$('body').append('<a id="scrollToTop" class="backTop hide"> <span class="mui-icon mui-icon-arrowup"></span> </a>')
|
||||
|
||||
|
||||
$('body').on('tap', '#scrollToTop', function() {
|
||||
mui('.mui-scroll-wrapper').scroll().scrollTo(0, 0, 100); //滚动到顶部
|
||||
})
|
||||
document.querySelector('.mui-scroll-wrapper').addEventListener('scroll', function(e) {
|
||||
if(scroll.y <= window.innerHeight * (-1)) {
|
||||
$('#scrollToTop').removeClass('hide');
|
||||
|
||||
} else {
|
||||
$('#scrollToTop').addClass('hide');
|
||||
}
|
||||
})
|
Reference in New Issue
Block a user