Home > Article > Web Front-end > How to implement page loading progress bar component in vue
Below I will share with you an example of the vue page loading progress bar component, which has a good reference value and I hope it will be helpful to everyone.
I first saw the page loading progress bar on YouTube, and later it can be seen on almost all major websites, so that users will not face a completely blank page when loading the page. The page is in a daze to improve the user experience
But from a development perspective, it is really difficult to grasp the authenticity of this kind of progress bar, because we cannot count the progress before the logic code is loaded, and the logic code itself The progress cannot be counted. In addition, it is impossible for us to monitor the loading of all resources.
In fact, users don’t care what percentage of your page is loaded, but what they really care about is how long it is until it is fully loaded, and whether the blank page has not been fully loaded or is blank after it is loaded. of. So we don't need to "simulate" a progress bar, use a fake animation effect to simulate loading before the back-end data is returned, and read the progress bar and hide it after the data is returned.
// progress-bar.vue <template> <transition name="fade"> <p class="progress-bar" v-if="isShow"> </p> </transition> </template> <script type="text/babel"> export default { data() { return { isShow: true, // 是否显示进度条 val: 0, // 进度 } }, props: { /** * 每10毫秒自增幅度 */ step: { type: Number, default: 5, }, /** * 初始值 */ initVal: { type: Number, default: 0, }, /** * 到一定进度停止 */ stopVal: { type: Number, default: 80, }, /** * 进度条继续到成功 */ isOk: { type: Boolean, default: false, }, }, mounted() { // 初始化后加载进度,加载到百分之多少由stopVal决定 this.val = this.initVal let step = this.step let timer = setInterval(() => { this.val = this.val + step this.$el.style.width = this.val + '%' // 父组件数据加载完前进度条最多到stopVal的这个百分值 if (this.val >= this.stopVal) { clearInterval(timer) return } }, 10) }, watch: { /** * 监听组件props变化决定是否继续加载,一般在父组件数据加载完后改变此标志位 */ isOk() { let val = this.val let step = this.step let timer = setInterval(() => { val = val + step this.$el.style.width = val + '%' // 加载到百分百完成 if (val >= 100) { // 关闭定时器 clearInterval(timer) // 加载完成关闭进度条 this.isShow = false // 加载完成的回调 this.$emit('callback', 'load success') return } }, 10) }, }, } </script> <style lang="stylus" rel="stylesheet/stylus"> .progress-bar { position fixed top 0 height 6px width 0 background-color #999 } .fade { &-enter-active, &-leave-active { transition: all .3s } &-enter, &-leave-active { opacity: 0 } } </style>
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
How to implement calls between methods in vue
How vux implements the pull-up refresh function
How to implement image carousel with jQuery
The above is the detailed content of How to implement page loading progress bar component in vue. For more information, please follow other related articles on the PHP Chinese website!