一個(gè)移動(dòng)端進(jìn)度條

簡(jiǎn)介

利用js原生寫的一個(gè)移動(dòng)端進(jìn)度條

效果展示

效果圖

灰心圖標(biāo)
紅心圖標(biāo)

代碼實(shí)現(xiàn)

<template>
  <div class="steps flex flex-wrap">
    <div class="step-item flex flex-col flex-items flex-jc" v-for="(item, index) in arr" :key="index">
      <!-- 可自由發(fā)揮的地方 -->
      <div class="flex flex-items flex-jc">{{item.rank}}</div>
      <!-- 可自由發(fā)揮的地方結(jié)束 -->
      <div class="step-word">{{item.num}}</div>
      <div class="step-line"></div>
      <div class="heart-icon flex flex-item flex-jc">
        <img width="15" :src="!item.done ? 'https://img-blog.csdnimg.cn/52f0ece61c264672bc87a8ac85e48a3f.png' : 'https://img-blog.csdnimg.cn/47a05243bb174f6b9415ed3a64c08a02.png'" alt="">
      </div>
      <div class="step-now flex flex-items flex-jc" style="display: none;">{{now}}</div>
    </div>
  </div>
</template>

<script>
export default {
  name: 'Step',
  props: {
    arr: {
      type: Array,
      required: true
    },
    now: {
      type: Number
    }
  },
  data () {
    return {}
  },
  created () {},
  mounted () {
    var items = document.querySelectorAll('.step-line')
    var signs = document.querySelectorAll('.step-now')
    var index = 0
    if (this.now < this.arr[0].num) {
      items[0].style.width = this.now / this.arr[0].num * 50 + '%'
      index = 0
    } else if (this.now >= this.arr[this.arr.length - 1].num) {
      for (var i = 0; i < this.arr.length - 1; i++) {
        items[i].style.width = '100%'
        this.$set(this.arr[i], 'done', true)
      }
      items[this.arr.length - 1].style.width = '50%'
      this.$set(this.arr[this.arr.length - 1], 'done', true)
    } else {
      for (var j = 0; j < this.arr.length - 1; j++) {
        if (this.now > this.arr[j].num) {
          if (this.now - this.arr[j].num > (this.arr[j + 1].num - this.arr[j].num) / 2) {
            items[j].style.width = '100%'
            this.$set(this.arr[j], 'done', true)
            items[j + 1].style.width = (this.now - this.arr[j].num) / (this.arr[j + 1].num - this.arr[j].num) * 100 - 50 + '%'
            if (items[j + 1].style.width === '50%') {
              this.$set(this.arr[j + 1], 'done', true)
            }
            index = j + 1
            continue
          }
          items[j].style.width = (this.now - this.arr[j].num) / (this.arr[j + 1].num - this.arr[j].num) * 100 + 50 + '%'
          index = j
          this.$set(this.arr[j], 'done', true)
          break
        }
      }
    }
    if (this.now < this.arr[this.arr.length - 1].num) {
      signs[index].style.display = 'block'
      signs[index].style.left = items[index].style.width
      signs[index].style.transform = 'translateX(-50%)'
    }
  },
  methods: {}
}
</script>

<style lang="less" scoped>
.flex {
  display: flex;
}

.flex-items {
  align-items: center;
}

.flex-jc {
  justify-content: center;
}

.flex-bet {
  justify-content: space-between;
}

.flex-aro {
  justify-content: space-around;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.steps {
  width: 100%;

  .step-item {
    position: relative;
    width: 33%;
    margin: 10px 0;
    padding-bottom: 10px;

    .step-line {
      position: absolute;
      width: 0;
      height: 1px;
      background: #f00;
      left: 0;
      bottom: 0;
      z-index: 5;
    }

    .step-now {
      font-size: 8px;
      color: #fff;
      position: absolute;
      padding: 1px 4px;
      bottom: 0;
      height: 26px;
      line-height: 26px;
      z-index: 15;
      background: url(http://h5.dongjinyu.com/icon/20210825094601_6125a0d92163e.png);
      background-size: 100% 100%;
    }

    .heart-icon {
      position: absolute;
      width: 20px;
      bottom: -8px;
      background: #fff;
      z-index: 10;
    }
  }

  .step-item:not(:last-child):before {
    width: 100%;
    height: 1px;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #E9E9E9;
  }

  .step-item:last-child:before {
    width: 50%;
    height: 1px;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #E9E9E9;
  }
}
</style>

使用方式

1很洋、引用使用
<Step :arr="list" :now="now"></Step>
2留潦、傳入?yún)?shù)樣例
list: [{
  num: 100,
  rank: '幼兒園'
}, {
  num: 200,
  rank: '小學(xué)'
}, {
  num: 400,
  rank: '初中'
}, {
  num: 800,
  rank: '高中'
}, {
  num: 1600,
  rank: '大學(xué)'
}, {
  num: 3200,
  rank: '碩士'
}, {
  num: 6400,
  rank: '博士'
}, {
  num: 12800,
  rank: '博士后'
}, {
  num: 25600,
  rank: '博士導(dǎo)師'
}, {
  num: 51200,
  rank: '國(guó)寶'
}],
now: 730
3指么、注意事項(xiàng)

(1)每一項(xiàng)的rank內(nèi)容部分可以自由發(fā)揮
(2)如果傳入的list數(shù)組中的數(shù)值鍵名不是num谐区,需要在vue文件中的js中將所有num改為list數(shù)組中數(shù)值的鍵名竟宋,dom項(xiàng)的屬性也自行修改

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市粘捎,隨后出現(xiàn)的幾起案子薇缅,更是在濱河造成了極大的恐慌,老刑警劉巖攒磨,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件泳桦,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡娩缰,警方通過查閱死者的電腦和手機(jī)灸撰,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來拼坎,“玉大人浮毯,你說我怎么就攤上這事√┘Γ” “怎么了债蓝?”我有些...
    開封第一講書人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)盛龄。 經(jīng)常有香客問我饰迹,道長(zhǎng)芳誓,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任啊鸭,我火速辦了婚禮锹淌,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘赠制。我一直安慰自己赂摆,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開白布钟些。 她就那樣靜靜地躺著库正,像睡著了一般。 火紅的嫁衣襯著肌膚如雪厘唾。 梳的紋絲不亂的頭發(fā)上褥符,一...
    開封第一講書人閱讀 49,166評(píng)論 1 284
  • 那天,我揣著相機(jī)與錄音抚垃,去河邊找鬼喷楣。 笑死,一個(gè)胖子當(dāng)著我的面吹牛鹤树,可吹牛的內(nèi)容都是我干的铣焊。 我是一名探鬼主播,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼罕伯,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼曲伊!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起追他,我...
    開封第一講書人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤坟募,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后邑狸,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體懈糯,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年单雾,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了赚哗。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡硅堆,死狀恐怖屿储,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情渐逃,我是刑警寧澤够掠,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布,位于F島的核電站朴乖,受9級(jí)特大地震影響祖屏,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜买羞,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一袁勺、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧畜普,春花似錦期丰、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至舶衬,卻和暖如春埠通,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背逛犹。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工端辱, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人虽画。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓舞蔽,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親码撰。 傳聞我的和親對(duì)象是個(gè)殘疾皇子渗柿,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容