美文网首页程序员
仿饿了么详情页 左右联动 vue+jquery

仿饿了么详情页 左右联动 vue+jquery

作者: 前端_周瑾 | 来源:发表于2018-05-29 16:16 被阅读79次

今天, 给大家分享一个仿饿了么商品详情页的左右联动
本方法是通过 jquery.js + vue.js 来实现的,小伙伴们不要忘记引入哦

HTML:

<body>
    <div class="header"></div>
    <div class="swiper-container">
        <!-- 商品 <-> 详情 -->
        <ul class="swiper-container-ul">
            <li class="swiper-container-ul-li actives">商品</li>
            <li class="swiper-container-ul-li">详情</li>
        </ul>

        <!---->
        <div class="swiper-wrapper">
            <div class="content">
                <!--左侧-->
                <div class="left" id="left">
                    <ul>
                        <li v-for="item in items">{{item.name}}</li>
                    </ul>
                </div>

                <!--右侧-->
                <div class="right" id="right">
                    <ul>
                        <li v-for="item in items">{{item.name}}
                            <div class="class-title">{{item.class}}</div>
                            <div v-for="ite in item.list">
                                <div class="item">
                                    <div class="item-left">
                                        <div class="item-img"></div>
                                    </div>
                                    <div class="item-right">
                                        <div class="title">{{ite.title}}</div>
                                    </div>
                                </div>
                            </div>

                        </li>

                    </ul>
                </div>
            </div>
        </div>
    </div>
</body>

css:

*{
  padding: 0;
  margin: 0;
}
.header{
  width: 100%;
  height: 150px;
  background: #555;
}
.swiper-container-ul{
  list-style: none;
  overflow: hidden;
  width: 100%;
  background: #fff;
  top: 0;
}
.swiper-container-ul-li{
  width: 50%;
  height: 40px;
  line-height: 40px;
  float: left;
  text-align: center;
}
.actives{
  border-bottom: 1px solid #3190e8;
  color: #3190e8;
}
.content{
  width: 100%;
  overflow: hidden;
}
.left{
  top: 41px;
  float: left;
  width: 25%;
  height: 100%;
  background: #eee;
}
.left ul{
  list-style: none;
}
.left ul li{
  padding: 15px 5px;
  text-align: center;
}
.active{
  background: #fff;
  border-left: 2px solid #3190e8;
}
.right{
  float: left;
  width: 75%;
  height: 100%;
}
.right ul{
  list-style: none;
}
.class-title{
  padding: 7px 10px;
  background: #eee;
}
.item{
  overflow: hidden;
  width: 100%;
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.item-left{
  float: left;
}
.item-right{
  float: left;
  padding: 0 10px;
}
.item-img{
  width: 100px;
  height: 100px;
  background: #eee;
}
.title{
  width: 100px;
  height: 20px;
  margin-top: 10px;
  background: #eee;
}
.subtitle{
  width: 70px;
  height: 20px;
  margin-top: 10px;
  background: #eee;
}
.price{
  width: 50px;
  height: 20px;
  margin-top: 10px;
  background: #eee;
}

JS:

<script>
    $(function () {
        $('.content').css('height',$('right').height)
        $('.left ul li').eq(0).addClass('active');

        $(window).scroll(function () {
            // 这里在滚动的时候做监听,如果翻上去的部分超过150的时候,切换商品和左侧这里做绝对定位,然后右侧的margin-left设置成左侧的宽度

            if($(window).scrollTop()>= 150){
                $('.swiper-container-ul').css('position','fixed');
                $('.left').css('position','fixed')
                $('.right').css('margin-left',$('.left').width());
            }else{
                $('.swiper-container-ul').css('position','')
                $('.left').css('position','')
                $('.right').css('margin-left','')
            }

            // 获取右侧当前li距离顶端的高度 - 右侧已经翻上去的高度 - head的高度
            $('.right ul li').each(function () {
                var target = parseInt($(this).offset().top - $(window).scrollTop() - 150)
                console.log($(this))
                var i = $(this).index()

            // if target<=0 清除所又li的active, 给当前li赋予active

                if(target<=0){
                    $('.left ul li').removeClass('active');
                    $('.left ul li').eq(i).addClass('active')
                }
            })
        })


        // 点击左侧li通过下标找到相应li的位置,通过animate滚动到相应的位置
        $('.left ul li').click(function () {
            var i = $(this).index('.left ul li')
            $('body,html').animate({scrollTop: $('.right ul li').eq(i).offset().top-40},1000)
        })
    })
</script>
<script>
    var left = new Vue({
        el: '#left',
        data: {
            items: [
                { name : '分类1' },
                { name : '分类2' },
                { name : '分类3' },
                { name : '分类4' },
                { name : '分类5' },
                { name : '分类6' },
                { name : '分类7' },
                { name : '分类8' }
            ]
        }
    });
    var right = new Vue({
        el: '#right',
        data: {
            items: [
                { class : '分类1',list : [ { title : '1' },{ title : '2' } ] },
                { class : '分类2',list : [ { title : '1' },{ title : '2' } ] },
                { class : '分类3',list : [ { title : '1' },{ title : '2' } ] },
                { class : '分类4',list : [ { title : '1' },{ title : '2' } ] },
                { class : '分类5',list : [ { title : '1' },{ title : '2' } ] },
                { class : '分类6',list : [ { title : '1' },{ title : '2' } ] },
                { class : '分类7',list : [ { title : '1' },{ title : '2' } ] },
                { class : '分类8',list : [ { title : '1' },{ title : '2' } ] }
            ]
        }
    });
</script>

相关文章

  • 仿饿了么详情页 左右联动 vue+jquery

    今天, 给大家分享一个仿饿了么商品详情页的左右联动本方法是通过 jquery.js + vue.js 来实现的,小...

  • 饿了么购物车效果(附源码)

    花了两天写了一个仿Android端饿了么外卖的效果,实现的功能包括: 左右侧列表联动 顶部吸附标题 利用二次贝塞尔...

  • 仿饿了么

    1. 完成资源整合+项目(目录)结构设计+mock数据引用 完成的svg文件要生成字体icon文件可以上icomo...

  • 仿饿了么商品列表页(tableView联动)

    这个功能的关键点是在于左侧tab点击可以联动到右侧的section下面,以及上下滑动右侧tab可以联动到左侧的分区...

  • 仿高德地图搜索结果页,饿了么订单轨迹页

    仿高德地图搜索结果页,仿饿了么订单轨迹页描述:卡片能支持上下左右滑动,支持向上拖动手势demo地址

  • 仿饿了么动画

    仿饿了么动画 最近项目Release完毕,闲暇之余给公司内部的小卖部app升下级(一个人撸完了design+cod...

  • vue(6) - 收藏集 - 掘金

    低仿饿了么 H5 - 纯前端 Vue 版 + 手把手教学 - 前端 - 掘金低仿饿了么H5-纯前端Vue版+手把手...

  • iOS仿饿了么选择商品交互

    安卓效果图,我看车不多就直接拿过来了 仿饿了么选择商品交互,image 变详情页,在掘金上看到安卓的,自己写过类似...

  • 仿饿了么小球动画

    饿了么下单时,点击➕会有一个小球跳跃进入购物车的动画,公司有个商城页面要求模仿这个效果,在网上搜了下.都需要借助框...

  • 分析饿了么详情页布局

    饿了么详情页分析 分三层:最底层:ViewController 上面包括背景视图: NVMRestaurantBa...

网友评论

本文标题:仿饿了么详情页 左右联动 vue+jquery

本文链接:https://www.haomeiwen.com/subject/nwjajftx.html