zoukankan      html  css  js  c++  java
  • 商城实现评论星星

    Star 静态组件

    <template>
      <div class="star star-24">
        <span class="star-item on"></span>
        <span class="star-item on"></span>
        <span class="star-item on"></span>
        <span class="star-item half"></span>
        <span class="star-item off"></span>
      </div>
    </template>
    <script>
    export default {}
    </script>
    <style lang="stylus" scoped>
    .star { // 2x图 3x图
      float: left;
      font-size: 0;
    
      .star-item {
        display: inline-block;
        background-repeat: no-repeat;
      }
    
      &.star-48 {
        .star-item {
           20px;
          height: 20px;
          margin-right: 22px;
          background-size: 20px 20px;
    
          &:last-child {
            margin-right: 0;
          }
    
          &.on {
            bg-image('./images/stars/star48_on');
          }
    
          &.half {
            bg-image('./images/stars/star48_half');
          }
    
          &.off {
            bg-image('./images/stars/star48_off');
          }
        }
      }
    
      &.star-36 {
        .star-item {
           15px;
          height: 15px;
          margin-right: 6px;
          background-size: 15px 15px;
    
          &:last-child {
            margin-right: 0;
          }
    
          &.on {
            bg-image('./images/stars/star36_on');
          }
    
          &.half {
            bg-image('./images/stars/star36_half');
          }
    
          &.off {
            bg-image('./images/stars/star36_off');
          }
        }
      }
    
      &.star-24 {
        .star-item {
           10px;
          height: 10px;
          margin-right: 3px;
          background-size: 10px 10px;
    
          &:last-child {
            margin-right: 0;
          }
    
          &.on {
            bg-image('./images/stars/star24_on');
          }
    
          &.half {
            bg-image('./images/stars/star24_half');
          }
    
          &.off {
            bg-image('./images/stars/star24_off');
          }
        }
      }
    }
    </style>
    
    
  • 相关阅读:
    CentOS yum 安装svn1.8
    js 替换掉汉字 和替换非汉字 比较时间JS
    PhpStorm 10 破解
    html中link的用法
    CSS3:nth-child()伪类选择器
    提示的小三角
    css 高度自适应
    <input type="file" />浏览时只显示指定文件类型
    MySQL查询表内重复记录
    扒站小工具
  • 原文地址:https://www.cnblogs.com/izhaong/p/12154286.html
Copyright © 2011-2022 走看看