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

jQuery仿天猫京东商城楼层滚动跳转代码

作者/代码整理:  (转载请附加本文地址,带有“懒人原生”字样的谢绝转载) 发布日期:2018-05-21
jQuery仿天猫京东商城楼层滚动跳转代码
一款购物商城常用的jQuery仿天猫京东商城楼层滚动跳转代码,点击楼层菜单跳转定位到指定位置,右下角还有返回顶部按钮。


js代码

<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/floor.js"></script>
<script type="text/javascript">
    /*
     totop  //返回顶部按钮
     fixedevery   // 左侧固定导航的每一项
     louceng  //模块的每一项
     header   //头部
     */
    $(function(){
        var obj = new floor('.totop','.fixedmeau>li','.louceng_box>.louceng','.header_box');
        obj.init()
    })

</script>