zoukankan      html  css  js  c++  java
  • "宫格导航"组件:<grid> —— 快应用组件库H-UI

    <import name="grid" src="../Common/ui/h-ui/navigation/c_grid"></import>
    <template>
        <div class="container">
            <grid data="{{data}}"></grid>
        </div>
    </template>
    
    <style lang="less">
        @import '../Common/styles/container.less';
    </style>
    
    <script>
        export default {
            private: {
                data:[
                    {
                        icon: 'female',
                        bgColor: 'bg-success',
                        text: '美妆'
                    },
                    {
                        icon: 'bag',
                        bgColor: 'bg-danger',
                        text: '包包'
                    },
                    {
                        icon: 'ring',
                        bgColor: 'bg-indigo',
                        text: '戒指'
                    },
                    {
                        icon: 'necklace',
                        bgColor: 'bg-pink',
                        text: '项链'
                    },
                    {
                        icon: 'skirt',
                        bgColor: 'bg-orange',
                        text: '连衣裙'
                    },
                    {
                        icon: 'shoe',
                        bgColor: 'bg-teal',
                        text: '高跟鞋'
                    },
                    {
                        icon: 't-shirt',
                        bgColor: 'bg-purple',
                        text: 'T恤'
                    },
                    {
                        icon: 'pants',
                        bgColor: 'bg-cyan',
                        text: '裤子'
                    },
                    {
                        icon: 'coat',
                        bgColor: 'bg-warning',
                        text: '外套'
                    }
                ]
            }
        }
    </script>
    

    <import name="grid" src="../Common/ui/h-ui/navigation/c_grid"></import>
    <template>
        <div class="container">
            <grid data="{{data}}" mode="rect"></grid>
        </div>
    </template>
    
    <style lang="less">
        @import '../Common/styles/container.less';
    </style>
    
    <script>
        export default {
            private: {
                data:[
                    {
                        icon: 'female',
                        bgColor: 'bg-success',
                        text: '美妆'
                    },
                    {
                        icon: 'bag',
                        bgColor: 'bg-danger',
                        text: '包包'
                    },
                    {
                        icon: 'ring',
                        bgColor: 'bg-indigo',
                        text: '戒指'
                    },
                    {
                        icon: 'necklace',
                        bgColor: 'bg-pink',
                        text: '项链'
                    },
                    {
                        icon: 'skirt',
                        bgColor: 'bg-orange',
                        text: '连衣裙'
                    },
                    {
                        icon: 'shoe',
                        bgColor: 'bg-teal',
                        text: '高跟鞋'
                    },
                    {
                        icon: 't-shirt',
                        bgColor: 'bg-purple',
                        text: 'T恤'
                    },
                    {
                        icon: 'pants',
                        bgColor: 'bg-cyan',
                        text: '裤子'
                    },
                    {
                        icon: 'coat',
                        bgColor: 'bg-warning',
                        text: '外套'
                    }
                ]
            }
        }
    </script>
    

    <import name="grid" src="../Common/ui/h-ui/navigation/c_grid"></import>
    <template>
        <div class="container">
            <grid data="{{data}}" column-num="4"></grid>
        </div>
    </template>
    
    <style lang="less">
        @import '../Common/styles/container.less';
    </style>
    
    <script>
        export default {
            private: {
                data:[
                    {
                        icon: 'female',
                        bgColor: 'bg-success',
                        text: '美妆'
                    },
                    {
                        icon: 'bag',
                        bgColor: 'bg-danger',
                        text: '包包'
                    },
                    {
                        icon: 'ring',
                        bgColor: 'bg-indigo',
                        text: '戒指'
                    },
                    {
                        icon: 'necklace',
                        bgColor: 'bg-pink',
                        text: '项链'
                    },
                    {
                        icon: 'skirt',
                        bgColor: 'bg-orange',
                        text: '连衣裙'
                    },
                    {
                        icon: 'shoe',
                        bgColor: 'bg-teal',
                        text: '高跟鞋'
                    },
                    {
                        icon: 't-shirt',
                        bgColor: 'bg-purple',
                        text: 'T恤'
                    },
                    {
                        icon: 'pants',
                        bgColor: 'bg-cyan',
                        text: '裤子'
                    },
                    {
                        icon: 'coat',
                        bgColor: 'bg-warning',
                        text: '外套'
                    }
                ]
            }
        }
    </script>
    

    <import name="grid" src="../Common/ui/h-ui/navigation/c_grid"></import>
    <template>
        <div class="container">
            <grid data="{{data}}" no-border="true"></grid>
        </div>
    </template>
    
    <style lang="less">
        @import '../Common/styles/container.less';
    </style>
    
    <script>
        export default {
            private: {
                data:[
                    {
                        icon: 'female',
                        bgColor: 'bg-success',
                        text: '美妆'
                    },
                    {
                        icon: 'bag',
                        bgColor: 'bg-danger',
                        text: '包包'
                    },
                    {
                        icon: 'ring',
                        bgColor: 'bg-indigo',
                        text: '戒指'
                    },
                    {
                        icon: 'necklace',
                        bgColor: 'bg-pink',
                        text: '项链'
                    },
                    {
                        icon: 'skirt',
                        bgColor: 'bg-orange',
                        text: '连衣裙'
                    },
                    {
                        icon: 'shoe',
                        bgColor: 'bg-teal',
                        text: '高跟鞋'
                    },
                    {
                        icon: 't-shirt',
                        bgColor: 'bg-purple',
                        text: 'T恤'
                    },
                    {
                        icon: 'pants',
                        bgColor: 'bg-cyan',
                        text: '裤子'
                    },
                    {
                        icon: 'coat',
                        bgColor: 'bg-warning',
                        text: '外套'
                    }
                ]
            }
        }
    </script>
    

    <import name="grid" src="../Common/ui/h-ui/navigation/c_grid"></import>
    <template>
        <div class="container">
            <grid data="{{data}}"></grid>
        </div>
    </template>
    
    <style lang="less">
        @import '../Common/styles/container.less';
    </style>
    
    <script>
        export default {
            private: {
                data:[
                    {
                        image: '/Common/icons/logo.png',
                        text: '快应用',
                    },
                    {
                        icon: 'bag',
                        bgColor: 'bg-danger',
                        text: '包包'
                    },
                    {
                        icon: 'ring',
                        bgColor: 'bg-indigo',
                        text: '戒指'
                    },
                    {
                        icon: 'necklace',
                        bgColor: 'bg-pink',
                        text: '项链'
                    },
                    {
                        icon: 'skirt',
                        bgColor: 'bg-orange',
                        text: '连衣裙'
                    },
                    {
                        icon: 'shoe',
                        bgColor: 'bg-teal',
                        text: '高跟鞋'
                    },
                    {
                        icon: 't-shirt',
                        bgColor: 'bg-purple',
                        text: 'T恤'
                    },
                    {
                        icon: 'pants',
                        bgColor: 'bg-cyan',
                        text: '裤子'
                    },
                    {
                        icon: 'coat',
                        bgColor: 'bg-warning',
                        text: '外套'
                    }
                ]
            }
        }
    </script>
    

    点击“导航”,页面转向:

    <import name="grid" src="../Common/ui/h-ui/navigation/c_grid"></import>
    <template>
        <div class="container">
            <grid data="{{data}}"></grid>
        </div>
    </template>
    
    <style lang="less">
        @import '../Common/styles/container.less';
    </style>
    
    <script>
        export default {
            private: {
                data:[
                    {
                        image: '/Common/icons/logo.png',
                        text: '导航',
                        uri: 'About'
                    },
                    {
                        icon: 'bag',
                        bgColor: 'bg-danger',
                        text: '包包',
                        uri: 'About'
                    },
                    {
                        icon: 'ring',
                        bgColor: 'bg-indigo',
                        text: '戒指'
                    },
                    {
                        icon: 'necklace',
                        bgColor: 'bg-pink',
                        text: '项链'
                    },
                    {
                        icon: 'skirt',
                        bgColor: 'bg-orange',
                        text: '连衣裙'
                    },
                    {
                        icon: 'shoe',
                        bgColor: 'bg-teal',
                        text: '高跟鞋'
                    },
                    {
                        icon: 't-shirt',
                        bgColor: 'bg-purple',
                        text: 'T恤'
                    },
                    {
                        icon: 'pants',
                        bgColor: 'bg-cyan',
                        text: '裤子'
                    },
                    {
                        icon: 'coat',
                        bgColor: 'bg-warning',
                        text: '外套'
                    }
                ]
            }
        }
    </script>
    

    扫码体验

  • 相关阅读:
    小白_开始学Scrapy__原理
    python zip()函数
    前端工程精粹(一):静态资源版本更新与缓存
    HTML 5 History API的”前生今世”
    常见的几个js疑难点,match,charAt,charCodeAt,map,search
    前端安全须知
    Html5游戏框架createJs组件--EaselJS(二)绘图类graphics
    Html5游戏框架createJs组件--EaselJS(一)
    github基本用法
    jquery ajax中事件的执行顺序
  • 原文地址:https://www.cnblogs.com/cloud-dev/p/gong-ge-dao-hangzu-jianltgridgt--kuai-ying-yong-zu.html
Copyright © 2011-2022 走看看