置顶

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$(function(){
    $("body").append('<div class="r_ad" id="r_ad"><span id="r_ad1"></span></div>');
    $(window).scroll(function(){
        itemshow($(this));
    })
    function itemshow(el){
        var el=el||$(window)
        var item=$("#r_ad");
        if(el.scrollTop()>=200){
            item.show();
            return;
        }
            item.hide();
    }
    function roll(ele,itemnum,later){
        $(ele).animate({scrollTop: itemnum}, later);
    }  
    $("#r_ad1").click(function(){
        roll("html,body",0,700)
    });
});

posted on 2014-11-03 10:36  鬼鬼丫404  阅读(80)  评论(0编辑  收藏  举报

导航