五星级评价

Posted candy-yao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了五星级评价相关的知识,希望对你有一定的参考价值。

一、效果

技术分享图片

二、html

  <div class="commentTitle clearfix">
      <div class="comment floatL">服务态度</div>
      <div class="starBox" ref="star1">
        <div class="star" v-for="(item,index) in starArr1" :key="index" @click="starClick1(index)">
          <img :src="‘../../static/images/‘+item.imgSrc">
        </div>
      </div>
    </div>

三、JS

starArr1: [{imgSrc: ‘star1.png‘}, {imgSrc: ‘star1.png‘}, {imgSrc: ‘star1.png‘}, {imgSrc: ‘star1.png‘}, {imgSrc: ‘star1.png‘}] //  变量
  starClick1 (index) {
      this.starArr1.forEach((element, i) => {
        this.$set(element, ‘imgSrc‘, ‘star1.png‘)
        if (i <= index) {
          this.$set(element, ‘imgSrc‘, ‘star2.png‘)
        }
      })
      this.commentScore = index + 1 //  评价成绩
    }
star1.png: 
 
技术分享图片
 
star2.png:
 
技术分享图片

 四、css

.commentTitle {
  height: 1.1rem;
  line-height: 1.1rem;
  font-size: .32rem;
  color: #333333;
  padding-top: .4rem;
}
.comment {
  line-height: .7rem;
  padding-right: 10px;
}
.starBox {
  display: flex;
  display: -webkit-flex;
  line-height: .9rem;
}
.star img {
  width: .8rem;
  height: .4rem;
}

 

以上是关于五星级评价的主要内容,如果未能解决你的问题,请参考以下文章

Js特效 -- 五星评价

五星级评价

电商网站订单评价得分的星级样式实现

仿淘宝实现多行星级评价

京东评价自动改为五星,啥意思,我在第三方店评价明明点的1星,显示出来变了五星,还有这个操作?

jquery 五星评价(图片实现)