您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關vue中如何使用svg實現(xiàn)評分顯示組件,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
在微信小程序中,有遇到要展示店鋪評分,或者是訂單完成后對商品進行評價,用到了星星展示,查了下,在微信中無法使用svg實現(xiàn)圖片,微信中只能將svg圖片轉成base64來顯示,所以是在vue中使用的svg來實現(xiàn)評分
1.效果圖
微信中的可以點擊及顯示,但是,顯示的話,在4.2分,4點多分的時候,顯示的是半顆星
vue中用的是svg實現(xiàn),所以用的是占比的形式,可以有一點點的星
2.微信實現(xiàn)店鋪評分顯示及商品評價星星展示
子組件index.wxml,可以動態(tài)的控制星星的大小
<!-- (size * stars.length + (size/2) * 4 + 20 )這里的話,是在可以點擊的時候,加上了好評的字體的長度 --> <view class='starsBox' style='width:{{isClick?(size * stars.length + (size/2) * 4 + 20 ):(size * stars.length)}}rpx;height:{{size}}rpx;'> <view class='stars' style='width:{{size * stars.length}}rpx;height:{{size}}rpx;'> <block wx:for="{{stars}}" wx:key="{{index}}"> <image src="/images/{{item == 0 ? 'grayStar':item}}.png" style='width:{{size}}rpx;height:{{size}}rpx;' data-index="{{index}}" catchtap="computeScore"></image> </block> </view> <view wx:if="{{isClick}}" class='text' style='font-size:{{size/2}}rpx;'> <text wx:if="{{value=='0'}}" class='pointText'>暫無評分</text> <text wx:elif="{{value=='1'}}" class='pointText'>差評</text> <text wx:elif="{{value<'4'}}" class='pointText'>中評</text> <text wx:else class='pointText'>好評</text> </view> </view>
子組件index.wxss
.starsBox{ display: flex; align-items: center; justify-content: flex-start; } .stars{ width: 150rpx; height: 50rpx; display: flex; align-items: center; justify-content: flex-start; } .stars image{ width: 30rpx; height: 30rpx; } .text{ color: #ccc; margin-left: 20rpx; }
子組件index.js
Component({ properties: { /* 顯示有色星星的個數 */ value: { type: Number, value: 0, /* 監(jiān)聽value值的變化 */ observer: function (newVal, oldVal, changedPath) { this.init() } }, /* 設置星星大小 */ size: { type: Number, value: 30 }, /* 是否可點擊,type為null表示值可以是任意類型 */ isClick: { type: null, value: false } }, attached() { /* 組件生命周期函數,在組件實例進入頁面節(jié)點樹時執(zhí)行 */ this.init(); }, data: { stars: [0, 0, 0, 0, 0] }, methods: { init() { let star = this.properties.value; let stars = [0, 0, 0, 0, 0]; /* 圖片名稱,通過設置圖片名稱來動態(tài)的改變圖片顯示 */ for (let i = 0; i < Math.floor(star); i++) { stars[i] = 'star'; } if (star > Math.floor(star)) { stars[Math.floor(star)] = 'halfStar'; } for (let i = 0; i < stars.length; i++) { if (stars[i] == 0) { stars[i] = 'grayStar'; } } this.setData({ stars }) }, /* 可點擊時,用于計算分數 */ computeScore(e) { let index = e.currentTarget.dataset.index; let isClick = this.data.isClick; if (isClick) { let score = index + 1; this.triggerEvent('compute', { score }); } } } })
3.父組件中引用
父組件index.wxml
<view class="score"> <view class="scoreItem"> <score value="{{shopGrade}}" size="46" isClick="true" bindcompute="computeGrade" /> </view> <view class="scoreItem"> <score value="{{shopGrade1}}" size="46" /> </view> </view>
父組件index.json
{ "usingComponents": { "score": "/component/score/index" } }
父組件index.js
data: { shopGrade: 0, shopGrade1: 4.6, }, /* 評分處理事件 */ computeGrade(e) { let score = e.detail.score; this.setData({ shopGrade: score }) },
4.vue中使用svg實現(xiàn)評分
首先在vue使用的index.html的模板文件中添加一個rem轉換算法,因為我后面用的單位是rem
/* 在頭部添加 */ <script type="text/javascript"> document.getElementsByTagName("html")[0].style.fontSize = 100 / 750 * window.screen.width + "px"; </script>
然后添加svg.vue文件,這個svg文件可以自己找圖片生成,并設置對應的id
<template> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" > <defs> <symbol id="star" viewBox="0 0 32 32"> <path class="path2" d="M16 26.382l-8.16 4.992c-1.5 0.918-2.382 0.264-1.975-1.435l2.226-9.303-7.269-6.218c-1.337-1.143-0.987-2.184 0.755-2.322l9.536-0.758 3.667-8.835c0.674-1.624 1.772-1.613 2.442 0l3.667 8.835 9.536 0.758c1.753 0.139 2.082 1.187 0.755 2.322l-7.269 6.218 2.226 9.303c0.409 1.71-0.485 2.347-1.975 1.435l-8.16-4.992z"> </path> </symbol> </defs> </svg> </template> <script></script> <style></style>
rating.vue文件引用svg.vue
<template> <div class="ratingstar"> <section class="star_container"> <svg class="grey_fill" v-for="(num,index) in 5" :key="index"> <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#star" rel="external nofollow" rel="external nofollow" ></use> </svg> </section> <div class="star_overflow" :> <section class="star_container"> <svg class="orange_fill" v-for="(num,index) in 5" :key="index"> <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#star" rel="external nofollow" rel="external nofollow" ></use> </svg> </section> </div> <svgIcon></svgIcon> </div> </template> <script> import svgIcon from '@/components/svg' export default { components: { svgIcon }, data() { return { rating: 4.2 } }, } </script> <style lang="less" rel="stylesheet/less" scoped> .ratingstar { position: relative; width: 100%; .star_overflow { overflow: hidden; position: relative; height: 0.65rem; } .star_container { position: absolute; top: 0.05rem; width: 1rem; display: flex; justify-content: flex-start; align-items: center; .grey_fill { width: 0.94rem; height: 0.2rem; fill: #d1d1d1; } .orange_fill { width: 0.94rem; height: 0.2rem; fill: #ff9a0d; } } } </style>
關于“vue中如何使用svg實現(xiàn)評分顯示組件”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。