https://cnodejs.org/topic/56ef3edd532839c33a99d00e 前端资源

页面滚动浮层出现

 $(window).scroll(function () {
var $ctop=$(".cont,.main").offset().top;

 

        if($(window).scrollTop() >=$ctop) {
          $(".fixed_one").show();
        }else{
          $(".fixed_one").hide();
        }

})

posted @ 2016-03-24 13:44  乐淘淘zzxh  阅读(155)  评论(0编辑  收藏  举报