微信小程序实现星星评分效果

思路很简单,小星星都是一张张独立的图片,点击的时候改变图片的路径就可以了。
我是用背景图片做的,先给盒子设置背景图片为灰色的小星星,盒子是根据js文件中的stars数组循环出来的,根据flag的值确定是灰色的小星星还是黄色的小星星,点击的时候获取当下这个盒子的index值,然后去更改stars数组中索引值小于等于index的每一项的flag就可以了。
当然,也可以用类名来控制灰色和黄色的小星星,在点击的时候操作类名也是可以实现的。
 


  
    
    
      评分
      
        
      
    
  
  
    
  

.stars{
  padding:85rpx 0 60rpx 273rpx;
  box-sizing: border-box;
  position: relative;
  border-bottom: 1rpx solid #ececec;
  background-color: #fff;
}
.stars image{
  width: 190rpx;
  height: 190rpx;
  border: 1rpx solid #000;
  position: absolute;
  top: 41rpx;
  left: 36rpx;
}
.stars .content view{
  font-size: 32rpx;
  color: #4a4a4a;
}
.stars .content>view:last-of-type{
  height: 40rpx;
  margin-top: 48rpx;
}
.stars .content>view:last-of-type view{
  float: left;
  width: 42rpx;
  height: 42rpx;
  margin-right: 25rpx;
  background-size: 100% 100%;
}
data: {
    stars:[
      {
        flag:1,
        bgImg: "http://wximg.youtasc.com/star.png",
        bgfImg:"http://wximg.youtasc.com/f_star.png"
      },
      {
        flag: 1,
        bgImg: "http://wximg.youtasc.com/star.png",
        bgfImg: "http://wximg.youtasc.com/f_star.png"
      },
      {
        flag: 1,
        bgImg: "http://wximg.youtasc.com/star.png",
        bgfImg: "http://wximg.youtasc.com/f_star.png"
      },
      {
        flag: 1,
        bgImg: "http://wximg.youtasc.com/star.png",
        bgfImg: "http://wximg.youtasc.com/f_star.png"
      },
      {
        flag: 1,
        bgImg: "http://wximg.youtasc.com/star.png",
        bgfImg: "http://wximg.youtasc.com/f_star.png"
      }
    ]
  },
  score:function(e){
    var that=this;
    for(var i=0;i

微信小程序实现星星评分效果_第1张图片

微信小程序实现星星评分效果_第2张图片

转载地址:https://blog.csdn.net/weixin_41257563/article/details/82756738

你可能感兴趣的:(微信小程序)