The implementation of WeChat mini-app's five-star rating function and mini-app's five-star rating Function

Source: Internet
Author: User

The implementation of the mini-program five-star evaluation function and the mini-program five-star evaluation function

Mini-app five-star rating Function

Let's take a look:

The effect to be achieved: the number of stars to be displayed when you click,

Next, you can directly view the source code:

<View class = "l-evalbox row"> <text class = "l-evaltxt"> satisfaction: </text> <view class = "l-evalist flex-1" bindtap = "chooseicon"> <icon class = "{tabArr. curHdIndex> '0 '? "Cur icon": 'icon '} "data-id =" 1 "> </icon> <icon class =" {tabArr. curHdIndex> '1 '? "Cur icon": 'icon '} "data-id =" 2 "> </icon> <icon class =" {tabArr. curHdIndex> '2 '? "Cur icon": 'icon '} "data-id =" 3 "> </icon> <icon class =" {tabArr. curHdIndex> '3 '? "Cur icon": 'icon '} "data-id =" 4 "> </icon> <icon class =" {tabArr. curHdIndex> '4 '? "Cur icon": 'icon '} "data-id =" 5 "> </icon> </view>

Css:

.l-evalbox{  height: 100rpx;  padding: 0 3%;  margin-top: 10rpx;  background: #FFF;  line-height: 100rpx;}.l-evaltxt{  width: 120rpx;  display: block;  font-size: 26rpx;  color: #666666;}.l-evalist .icon{  background-position: -77rpx -246rpx;  width: 40rpx;  height: 43rpx;  margin-right: 30rpx;}.l-evalist .cur{  background-position: -128rpx -246rpx;}.l-evalist .icon:last-child{  margin: 0;}

The js Code is as follows:

chooseicon:function(e){     var strnumber=e.target.dataset.id;    var _obj={};    _obj.curHdIndex=strnumber;     this.setData({      tabArr: _obj    });    },

The result is as follows:

Thank you for reading this article and hope to help you. Thank you for your support for this site!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.