vue實現帶小數點的星星評分

本文實例為大傢分享瞭vue實現帶小數點的星星評分的具體代碼,供大傢參考,具體內容如下

首先我們要先引入vue.js文件

css部分

<style>
 main{
  position:relative;
  }
 .star_line{
  /*  設置強制不換行 */
  width-space: nowrap;
  overflow: hidden;
  position: absolute;
  }
 .star{
  display: inline-block;
  /* 設置當鼠標放到星星上是變成小手樣式 */
  cursor: pointer
  }
</style>

body部分

<div id="app">
 <input type="text" v-model.number="score">
 <- 任何一個組件在進行雙向綁定接收綁定的值的時候,必須使用value來接收,原理參考input ->
 <v-star v-model="score"></v-star>
</div>

js部分我們用到組件,input在根組件內,而我們創建的星星放在一個組件內,主要通過雙向綁定,父組件和子組件相互傳值,來實現星星評分

組件模板部分

<script id="v-star" type="text/html">
    <main :style="mainStyle">
        <!-- 白星星 -->
        <div class="star_line">
            <span @click="changeValue(star)" class="star" :style="starStyle" v-for="star in total">☆</span>
        </div>
        <!-- 黑星星 -->
        <div class="star_line" :style="blackStyle">
            <span @click="changeValue(star-1)" class="star" :style="starStyle" v-for="star in total">★</span>
        </div>
    </main>
</script>

js部分

<script>
    Vue.component("v-star",{
        template:"#v-star",
        props:{
            total:{
                default:10,
            },
            size:{
                default:30
            },
            // 接收從父組件傳過來的score
            value:{}
        },
        // 計算屬性
        computed:{
            mainStyle(){
                return{
                    width:this.size * this.total + "px",
                }
            },
            starStyle(){
                return{
                    width:this.size + "px",
                    height:this.size + "px",
                    fontSize: this.size + 6 + "px"
                }
            },
            blackStyle(){
                return{
                    width:this.value / this.total * 100 + "%"
                }
            }
        },
        methods:{
            changeValue(value){
                // 將最新的結果傳給input
                // input標簽有有個默認的input事件
                this.$emit("input",value)
            }
        }
    })

    new Vue({
        el:"#app",
        data:{
            score:1
        }
    })
</script>

效果圖

以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。

推薦閱讀: