每日鸡汤: 没有谁必须要帮助你,任何事情都得靠自己去完成,不努力去哪找一个心甘情愿给你依靠的人,时间长了你会知道,你不优秀就会被社会淘汰,别把现实当偶像剧,没有天上掉馅饼的事,现在开始努力吧,在不久的将来你会变成更好的自己。

    <script src="http://cdn.static.runoob.com/libs/jquery/2.1.1/jquery.min.js"></script>
    <script type="text/javascript">
        //GO, WHERE YOU WANT
        $('a.page-scroll').click(function() {
            if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
            var target = $(this.hash);
            target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
            if (target.length) {
                $('html,body').animate({
                scrollTop: target.offset().top - 40
                }, 900);
                return false;
            }
            }
        });
    </script>