首頁  >  文章  >  web前端  >  在vue-star中如何實現評星組件開發

在vue-star中如何實現評星組件開發

亚连
亚连原創
2018-06-02 14:46:521921瀏覽

下面我就為大家分享一篇vue-star評星元件開發實例,具有很好的參考價值,希望對大家有幫助。

star資料夾下建立Star.vue,及相關的圖片資訊。方便元件的就近維護

Star.vue:

<template>
 <p class="star" :class="starSize">
 <span v-for="(itemClass,key) in itemClasses" :class="itemClass" class="star-item"></span>
 </p>
</template>
<script>
 const LENGTH = 5;
 const CLS_ON = &#39;on&#39;;
 const CLS_HALF = &#39;half&#39;;
 const CLS_OFF = &#39;off&#39;;
 export default{
 props:{
  size:{ //尺寸,24,36,48
  type: Number
  },
  score:{
  type: Number
  }
 },
 computed:{
  starSize(){
  return &#39;star-&#39;+ this.size;
  },
  itemClasses(){
  let result = [];
  let score = Math.floor(this.score*2)/2; //将数值调整为整数及.5的形式,例:4.3 => 4;4.6 => 4.5
  let hasDecimal = score %1 !==0;
  let integer = Math.floor(score);
  for(let i =0;i<integer;i++){
   result.push(CLS_ON);
  }
  if(hasDecimal){
   result.push(CLS_HALF);
  }
  while(result.length<LENGTH){
   result.push(CLS_OFF);
  }
  return result;
  }
 }
 }
</script>
<style lang="stylus" rel="stylesheet/stylus">
@import "../../common/stylus/mixin.styl";
.star
 font-size: 0
 .star-item
 display: inline-block
 background-repeat: no-repeat
 &.star-48
 .star-item
  width: 20px
  height: 20px
  margin-right: 22px
  background-size: 20px 20px
  &.last-child
  margin-right: 0
  &.on
  bg-image(&#39;star48_on&#39;)
  &.half
  bg-image(&#39;star48_half&#39;)
  &.off
  bg-image(&#39;star48_off&#39;)
 &.star-36
 .star-item
  width: 15px
  height: 15px
  margin-right: 6px
  background-size: 15px 15px
  &.last-child
  margin-right: 0
  &.on
  bg-image(&#39;star36_on&#39;)
  &.half
  bg-image(&#39;star36_half&#39;)
  &.off
  bg-image(&#39;star36_off&#39;)
 &.star-24
 .star-item
  width: 10px
  height: 10px
  margin-right: 3px
  background-size: 10px 10px
  &.last-child
  margin-right: 0
  &.on
  bg-image(&#39;star24_on&#39;)
  &.half
  bg-image(&#39;star24_half&#39;)
  &.off
  bg-image(&#39;star24_off&#39;)
</style>

##Header .vue:

<star :size="48" :score="3.5"></star>
<script>
import star from &#39;../star/Star.vue&#39;
export default{
 components:{
 star
 }
}
</script>

mixin.styl:

bg-image($url)
 background-image: url($url + &#39;@2x.png&#39;)
 @media (-webkit-min-device-pixel-ratio: 3),(min-device-pixel-ratio:3)
 background-image: url($url + &#39;@3x.png&#39;)

上面是我整理給大家的,希望今後會對大家有幫助。

相關文章:

vue使用facebook twitter分享範例

200行程式碼實作blockchain 區塊鏈實例詳解

#react以create-react-app為基礎建立專案

以上是在vue-star中如何實現評星組件開發的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn