美文网首页
模仿腾讯视频滑动顶栏

模仿腾讯视频滑动顶栏

作者: 81fe5084e6c1 | 来源:发表于2016-05-23 14:20 被阅读40次

    ```

    html

    <header>

    {{l}}

    </header>

    js

    ```

    new Vue({

    el: 'body',

    data: {

    list: ['精选', '跑男', '电视剧', '电影', '综艺', '原创', '原创', '原创', '原创', '原创', '原创', '原创', '原创']

    },

    computed: {

    listWidth: function() {

    return {

    width: (this.list.length * 4) + 'rem'

    }

    }

    }

    })

    css

    * {

    box-sizing: border-box;

    }

    body {

    color: #666;

    font-size: 16px;

    }

    header {

    display:flex;

    flex-flow:row;

    width: 100%;

    height: 2rem;

    margin: 0 auto;

    background-color: #fff;

    }

    list {

    flex: 1;

    overflow: auto;

    }

    list ul {

    display: flex;

    flex-flow: row;

    list-style: none;

    height: 2rem;

    line-height: 2rem;

    margin: 0;

    padding: 0;

    }

    list ul li {

    flex: 1;

    width: 4rem;

    text-align: center;

    color

    }

    icon {

    display: flex;

    flex-flow: column;

    justify-content: space-between;

    padding: .5rem;

    width: 2rem;

    background-color: #2C9E40;

    cursor: pointer;

    z-index: 2;

    }

    icon > span {

    height: 2px;

    background-color: #fff;

    }

    相关文章

      网友评论

          本文标题:模仿腾讯视频滑动顶栏

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