91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在vue2.0中使用SVG實現音樂播放圓形進度條組件

發布時間:2021-06-02 17:40:05 來源:億速云 閱讀:175 作者:Leah 欄目:web開發

這期內容當中小編將會給大家帶來有關怎么在vue2.0中使用SVG實現音樂播放圓形進度條組件,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

progress-circle.vue源碼:

<template>
 <div class="progress-circle">
 <svg :width="radius" :height="radius" viewBox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg">
  <circle class="progress-background" r="50" cx="50" cy="50" fill="transparent"/>
  <circle class="progress-bar" r="50" cx="50" cy="50" fill="transparent" :stroke-dasharray="dashArray"
    :stroke-dashoffset="dashOffset"/>
 </svg>
 <slot></slot>
 </div>
</template>
 
<script type="text/ecmascript-6">
 export default {
 props: {
  radius: {
  type: String,
  default: '0.32rem'
  },
  percent: {
  type: Number,
  default: 0
  }
 },
 data() {
  return {
  dashArray: Math.PI * 100
  }
 },
 computed: {
  dashOffset() {
  return (1 - this.percent) * this.dashArray
  }
 }
 }
</script>
 
<style scoped lang="stylus" rel="stylesheet/stylus">
 .progress-circle
 position: relative
 circle
  stroke-width: 0.16rem
  transform-origin: center
  &.progress-background
  transform: scale(0.9)
  stroke: rgba(255, 205, 49, 0.5)
  &.progress-bar
  transform: scale(0.9) rotate(-90deg)
  stroke: #ffcd32
</style>

本組件沒有使用本地資源,可直接只用,在父組件中導入并注冊后,調用組件。
父組件DOM結構:

<div class="control">
 <progress-circle :radius="radius" :percent="percent">
  <i @click.stop="togglePlaying" class="icon-mini" :class="iconMiniPlay"></i>
 </progress-circle>
</div>

解釋:其中<i></i>中引用的是制作的css圖標(播放/暫停按鈕),通過iconMiniPlay決定展現是播放按鈕還是暫停按鈕(本例子只介紹原型進圖條組件的開發和使用,因此不多介紹),設置圖標的大小務必注意與radius一致,不明白為什么的話建議嘗試一下,實踐出真知噢。

需要像組件傳入的參數:

svg圈圈大小radius以及歌曲播放進度百分比percent,兩個數據來源:

怎么在vue2.0中使用SVG實現音樂播放圓形進度條組件

解釋:

percent通過audio標簽的currentTime獲取,duration為接口獲取的當前歌曲總長度,相除則為當前進度百分比。

radius可根據自身開發時所需規格設置(其他布局、樣式之類的也是)

父組件樣式(本人使用stylus):

 .control
 position absolute
 top 0.35rem
 right 1rem
 color $color-theme-d
 .icon-mini
 font-size: 0.64rem
 position: absolute
 left: 0
 top: 0

上述就是小編為大家分享的怎么在vue2.0中使用SVG實現音樂播放圓形進度條組件了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

琼结县| 浦北县| 九江县| 三穗县| 宜都市| 寻甸| 成武县| 彰武县| 杂多县| 岢岚县| 县级市| 固安县| 龙岩市| 天峨县| 正安县| 营山县| 班戈县| 贺兰县| 乌鲁木齐县| 花莲市| 阿拉尔市| 绥江县| 蒲江县| 嘉峪关市| 永寿县| 定安县| 万宁市| 永嘉县| 巨鹿县| 河北区| 英德市| 新巴尔虎右旗| 开原市| 富源县| 吴江市| 乐至县| 象山县| 郴州市| 玉田县| 永新县| 永仁县|