簡單介紹Vue中使用js製作進度條式資料對比動畫
本文例項為大家分享了Vue中使用js製作進度條式資料對比動畫的具體程式碼,供大家參考,具體內容如下
實現的效果:(初始化以及瀏覽器resize的時候兩側的條形為向兩側遞增的動畫,其中兩端的數字也是遞增的動畫)
HTML部分:
< div class="no-ivatargo-chart-b"> < div class="investment-ability"> < div class="title"> < span>您的投資能力分析 < /div> < div class="investment-ability-picture-outer-container"> < div class="investment-ability-picture-container"> < div class="investment-ability-picture-header" ref="allLine"> < span>我 < span>平均 < /div> < div class="investment-ability-picture" v-for="(item, index) in abilityArr" :key="index"> < div class="investment-ability-picture-top"> < div class="investment-left"> < div class="left-icon-outer"> < div class="left-icon-inner"> < /div> < span>{{item.title}} < /div> < div class="investment-right"> < div class="investment-info"> < span class="my-color">{{item.score | scoreFilter}} < div class="all-line"> < div class="my-line" :style="{'width': item.myWidth}"> < div class="other-line" :style="{'width': item.averageWidth}"> < /div> < span class="average-color">{{item.average | scoreFilter}} < /div> < /div> < /div> < /div> < div class="investment-ability-picture-footer"> < span>100 < span>0 < span>100 < /div> < /div> < /div> < /div> < /div>
filters: { scoreFilter (val) { if (!isNaN(val)) { return Number(val) < 10 ? `0${parseInt(val)}` : parseInt(val) } else { return '' } } }
CSS部分:
.no-ivatargo-chart-b { width: 100%; overflow: hidden; display: flex; flex-direction: column; font-size: 14.76px; color: #bfbfbf; background-color: #0f1318; .title { display: flex; align-items: center; font-size: 17.22px; color: #bfbfbf; margin-bottom: 15px; } .investment-ability-picture-header { width: 400px; margin-left: 130px; display: flex; align-items: center; justify-content: space-around; margin-bottom: 10px; color: #fff; } .investment-ability-picture-outer-container { display: flex; justify-content: center; align-items: center; height: calc(100% - 50px); .investment-ability-picture-container { display: flex; flex-direction: column; .investment-ability-picture { display: flex; flex-direction: column; margin-bottom: 10px; .investment-ability-picture-top { display: flex; .investment-left { font-size: 14.76px; color: #bfbfbf; width: 100px; display: flex; align-items: center; .left-icon-outer { width: 14px; height: 14px; background-color: #3fb050; border-radius: 50%; position: relative; margin-right: 5px; .left-icon-inner { position: absolute; width: 5px; height: 5px; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: #fff; border-radius: 50%; } } } .investment-right { display: flex; align-items: center; justify-content: space-between; .investment-info { display: flex; align-items: center; justify-content: space-between; .all-line { width: 400px; height: 10px; background-color: #57606e; border-radius: 2px; margin-left: 10px; margin-right: 10px; position: relative; .my-line { width: 0; height: 10px; position: absolute; top: 0; right: 200px; background-color: #f5a623; border-top-left-radius: 2px; border-bottom-left-radius: 2px; } .other-line { width: 0; height: 10px; position: absolute; top: 0; left: 200px; background-color: #1890ff; border-top-right-radius: 2px; border-bottom-right-radius: 2px; } } .my-color { width: 20px; color: #f5a623; } .average-color { width: 20px; color: #1890ff; } } } } .investment-ability-picture-bottom { display: flex; flex-direction: column; background-color: #ccc; width: 400px; margin-left: 130px; padding: 5px; color: #000; } } } } .investment-ability-picture-footer { width: 400px; margin-left: 130px; display: flex; align-items: center; justify-content: space-between; color: #fff; } }
JS部分:
1.子元件當中
mounted () { let that = this window.onresize = () => { clearTimeout(that.resizeTimer) that.resizeTimer = setTimeout(() => { that.handleGetAllWidth() }, 1000) } this.$nextTick(() => { clearTimeout(this.resizeTimerB) this.resizeTimerB = setTimeout(() => { this.handleGetAllWidth() }, 200) }) } // methods當中 handleGetAllWidth () { this.$emit('getAllWidth', this.$refs.allLine.offsetWidth) }
2.父元件當中
getAllLineWidth (data) { this.allLineWidth = data this.calculateIvatargo() }, // 給條形圖新增計算寬度,並形成動畫 calculateIvatargo () { this.myTimerArr.forEach((value, index) => { clearInterval(value) }) this.averageTimerArr.forEach((value, index) => { clearInterval(value) }) this.myTimerArr = [] this.averageTimerArr = [] let myVal = [] let averageVal = [] this.myAbilityArr.forEach((value, index) => { myVal[index] = 0 averageVal[index] = 0 this.myTimerArr[index] = setInterval(() => { if (myVal[index] > Number(this.allLineWidth) * Number(value.score) / 200 || !value.score) { clearInterval(this.myTimerArr[index]) value.score ? myVal[index] = Number(this.allLineWidth) * Number(value.score) / 200 : myVal[index] = 0 this.$set(value, 'myWidth', myVal[index] + 'px') this.$set(value, 'myNum', value.score) } else { myVal[index]++ this.$set(value, 'myWidth', myVal[index] + 'px') this.$set(value, 'myNum', myVal[index] / 2) } }, 5) this.averageTimerArr[index] = setInterval(() => { if (averageVal[index] > Number(this.allLineWidth) * Number(value.average) / 200 || !value.average) { clearInterval(this.averageTimerArr[index]) value.average ? averageVal[index] = Number(this.allLineWidth) * Number(value.average) / 200 : averageVal[index] = 0 this.$set(value, 'averageWidth', averageVal[index] + 'px') this.$set(value, 'averageNum', value.average) } else { averageVal[index]++ this.$set(value, 'averageWidth', averageVal[index] + 'px') this.$set(value, 'averageNum', averageVal[index] / 2) } }, 5) }) }
以上就是本文的全部內容,希望對大家的學習有所幫助.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69901823/viewspace-2886323/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Vue canvas繪製圓形進度條動畫載入VueCanvas動畫
- 基於Vue.js的簡單的svg進度條Vue.jsSVG
- 簡單介紹Vue中使用js-cookie詳情VueJSCookie
- 簡單進度條
- 直播平臺製作,使用 NProgress 進度條
- 簡單介紹Python中的配對函式zip()Python函式
- 簡單介紹Vue使用echarts定製特殊的儀表盤VueEcharts
- 請使用純HTML製作一個進度條HTML
- 簡單介紹SpringSecurity框架簡介及與shiro特點對比SpringGse框架
- 簡單介紹SQL中ISNULL函式使用方法SQLNull函式
- 對GaussDB資料庫和資料管理的簡單介紹資料庫
- Js 百分比進度條JS
- 製作遊戲載入進度條遊戲
- 簡單介紹JS函式防抖和函式節流JS函式
- 利用js製作簡單的動態日曆JS
- js迴圈中reduce的用法簡單介紹JS
- 每日CSS_純CSS製作進度條CSS
- css3 製作圓環進度條CSSS3
- vue 自定義指令實現,滾動條百分比進度條。Vue
- canvas 畫進度條Canvas
- Qml 實現水波進度動畫條動畫
- Android 動畫 介紹與使用Android動畫
- SVG繪製直線簡單介紹SVG
- 使用GSAP製作動畫影片動畫
- 簡單介紹 Vue 3.0 專案建立Vue
- Python開發技巧-教你製作Python進度條Python
- mitmproxy中libmproxy簡單介紹MITIBM
- 使用canvas繪製圓形進度條Canvas
- android 自定義酷炫進度條動畫Android動畫
- 【Android】自定義ProgressView-進度條動畫AndroidView動畫
- 簡單介紹js 陣列 fill() 填充方法JS陣列
- 簡單介紹python中使用正規表示式的方法Python
- Java正規表示式簡單介紹Java
- Lottie Android 動畫製作與使用Android動畫
- 使用 ConstraintLayout 製作漂亮的動畫AI動畫
- vue匯出excel(簡單方法完整介紹)VueExcel
- 簡單介紹nginx 變數使用Nginx變數
- vue中使用Velocity.js動畫VueJS動畫