1234567891011121314151617181920212223 |
- $(function () {
-
- $(window).scroll(function () {
- var w_height = $(window).height();
- var scroll_top = $(document).scrollTop();
- if (scroll_top > w_height) {
- $(".goTop").fadeIn(500);
- } else {
- $(".goTop").fadeOut(500);
- }
- });
-
- $(".goTop").click(function (e) {
- e.preventDefault();
- $(document.documentElement).animate({
- scrollTop: 0
- }, 200);
-
- $(document.body).animate({
- scrollTop: 0
- }, 200);
- });
- })
|