锚点滑动

    项目
    
            $(function(){
                //锚点跳转滑动效果
                $("a").click(function () {

                $("html, body").animate({scrollTop: $($(this).attr("href")).offset().top -20+ "px"}, 5000);

                return false;//不要这句会有点卡顿

                });
            })

你可能感兴趣的:(锚点滑动)