平滑滚动到指定锚点

    function scroTo(e) {
        var t=$(e).attr('data-cate');
        var obj = $('#'+t).first();
        $("html, body").animate({
            scrollTop: obj.offset().top -45+ "px"
        }, {
            duration: 500,
            easing: "swing"
        });
    }
原文地址:https://www.cnblogs.com/Celebrator/p/6434807.html