1. 程式人生 > >小程式實現星級打分

小程式實現星級打分

效果圖

wxml

<view >
  
    <block wx:for="{{stars}}">
      <image class="star-image" style="left: {{item*100}}rpx" src="{{key > item ?(key-item == 0.5?halfSrc:selectedSrc) : normalSrc}}">
        <view class="item" style="left:0rpx" data-key="{{item+0.5}}" bindtap="selectLeft"
></view> <view class="item" style="left:50rpx" data-key="{{item+1}}" bindtap="selectRight"></view> </image> </block> <view style="margin-top:450rpx"> <button bindtap="startRating">確認</button> </view> </view>

wxss

.star-image
{ position: absolute; top: 50rpx; margin-left: 100rpx; width: 100rpx; height: 100rpx; src: "/images/icon/star-no.png"; } .item{ position: absolute; top: 50rpx; width: 100rpx; height: 100rpx; }

js

//index.js
var app = getApp()
var count = 0;
Page({
  data: {
    stars: [0, 1, 2, 3, 4],
    normalSrc: '/images/icon/star-no.png',
    selectedSrc: '/images/icon/star-full.png',
    halfSrc: '/images/icon/star-half.png',
    key: 0,//評分
    status:'',    //0未課評 1已課評
  
}, /** * 生命週期函式--監聽頁面載入 */ onLoad: function (options) { console.log(options.status) }, /** * 點選左邊,半顆星 */ selectLeft: function (e) { var key = e.currentTarget.dataset.key if (this.data.key == 0.5 && e.currentTarget.dataset.key == 0.5) { //只有一顆星的時候,再次點選,變為0顆 key = 0; } count = key this.setData({ key: key }) }, /** * 點選右邊,整顆星 */ selectRight: function (e) { var key = e.currentTarget.dataset.key count = key this.setData({ key: key }) }, // 確定按鈕 startRating: function (e) { wx.showModal({ title: '分數', content: "" + count, success: function (res) { if (res.confirm) { console.log('使用者點選確定') } } }) } })

轉自小程式元件之星級評分