标签:touch click ons mat htm 单击 gettime anim 回到顶部
移动端双击回到顶部:
var touchtime = new Date().getTime();
$(".header").on("click", function() {
if(new Date().getTime() - touchtime < 500) {
console.log("dblclick");
$(‘html , body‘).animate({
scrollTop: 0
}, ‘slow‘);
} else {
touchtime = new Date().getTime();
console.log("click")
}
});
单击回到顶部:
$(window).scroll(function(){
if($(this).scrollTop() > 100){
$(‘.top‘).fadeIn();
}else{
$(‘.top‘).fadeOut();
}
});
$(".top").click(function(){
$(‘html , body‘).animate({
scrollTop: 0
}, ‘slow‘);
})
标签:touch click ons mat htm 单击 gettime anim 回到顶部
原文地址:https://www.cnblogs.com/supereast/p/10996975.html