注册 登录 充值会员 退出
毕业设计 PHP源码
充值

jQuery+css3网站右侧微信扫码关注返回顶部代码

作者/代码整理:  (转载请附加本文地址,带有“懒人原生”字样的谢绝转载) 发布日期:2017-08-27
jQuery+css3网站右侧微信扫码关注返回顶部代码
基于jQuery+css3实现的网站右侧微信扫码关注返回顶部代码,jQuery右侧飘浮二维码特效,jQuery返回顶部按钮代码。


js代码

<script type="text/javascript">
    function b(){
        h = $(window).height();
        t = $(document).scrollTop();
        if(t > h){
            $('#gotop').show();
        }else{
            $('#gotop').hide();
        }
    }
    $(document).ready(function(e) {

        b();

        $('#gotop').click(function(){
            $(document).scrollTop(0);
        });

        $('#code').hover(function(){
            $(this).attr('id','code_hover');
            $('#code_img').show();
            $('#code_img').addClass('a-fadeinL');
        },function(){
            $(this).attr('id','code');
            $('#code_img').hide();
        })

    });

    $(window).scroll(function(e){
        b();
    });
</script>