vue星星評分(帶小數點)
阿新 • • 發佈:2018-12-10
首先我們要先引入vue.js檔案
<style>
main{
position:relative;
}
.star_line{
/* 設定強制不換行 */
width-space: nowrap;
overflow: hidden;
position: absolute;
}
.star{
display: inline-block;
/* 設定當滑鼠放到星星上是變成小手樣式 */
cursor: pointer
}
</style>
<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>
<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>