实现点击到底部、顶部、指定div功能
程序员文章站
2022-03-24 12:42:36
顶部: $(".back_top").click(function () { scrollTo(0, 0); }); function goTop() { $('html, body').animate({scrollTop:0}, 'slow'); } 底部: $(".back_bottom"). ......
顶部:
$(".back_top").click(function () {
scrollto(0, 0);
});
function gotop() {
$('html, body').animate({scrolltop:0}, 'slow');
}
底部:
$(".back_bottom").click(function () {
$('html,body').animate({ scrolltop: document.documentelement.scrollheight }, 800);
});
function gobottom(){
window.scrollto(0, document.documentelement.scrollheight-document.documentelement.clientheight);
}
指定div:
function godiv(div) {
var a = $("#"+div).offset().top;
$("html,body").animate({scrolltop:a}, 'slow');
}
下一篇: lfs学习笔记(一)前期准备工作