vue 骨架屏组件

2024-05-09 03:38

本文主要是介绍vue 骨架屏组件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

注意:如果同学们不使用page-skeleton-webpack-plugin和vue-server-renderer,并且,你希望生成的骨架屏可以和页面相匹配,可以往下看!!!

 

 

1、实现原理:

给需要的dom标签设置特定类名,使用getBoundingClientRect来获取dom标签的大小和位置信息,并以此来生成一个占位符,最终生成一份“骨架屏”,当页面加载完毕,移除该“骨架屏”组件即可。因为这是在mounted周期获取元素信息,故如果元素信息不满意,需要先默认一些初始数据

2、代码如下:

   (1) index.vue:

<template><div  class='skeleton' :style="skeletonStyle"><div v-for="(item,index) in darks"class="item dark":style="{ ...createStyle(item), backgroundColor: darkColor }":key="'darks'+index"></div><div v-for="(item,index) in lights"class="item light":style="{ ...createStyle(item), backgroundColor: lightColor }":key="'lights'+index"></div><div v-for="(item,index) in squares"class="item square":style="createStyle(item)":key="'squares'+index"></div><div v-for="(item,index) in circulars"class="item circular":style="createStyle(item)":key="'circulars'+index"></div><div v-for="(item,index) in cylinders"class="item cylinder":style="createCylinderStyle(item)":key="'circulars'+index"></div></div>
</template><script>// 约定.skeleton样式类为骨架屏查找绘制节点的根节点// 约定.skeleton-square 样式类,表示绘制当前节点的骨架节点样式为方形(如商品卡片)// 约定.skeleton-circular样式类,表示绘制当前节点的骨架节点为圆形(如logo)// 约定.skeleton-cylinder样式类,表示绘制当前节点的骨架节点为长条形(如搜索框)// 约定.skeleton-light与.skeleton-dark为块元素背景骨架样式export default {name: "Skeleton",data(){return{lights:[],darks: [],squares: [],circulars: [],cylinders: [],}},props:{selector: {type:String,required:false,default:'skeleton'},backgroundColor: {type:String,required:false,default:'#fff'},lightColor: {type:String,required:false,default:'white'},darkColor: {type:String,required:false,default:'#2f3333'},top: {type:String,required:false,default:'0'},},mounted() {Promise.all([this.selectAll(`.${this.selector}-light`),this.selectAll(`.${this.selector}-dark`),this.selectAll(`.${this.selector}-square`),this.selectAll(`.${this.selector}-circular`),this.selectAll(`.${this.selector}-cylinder`),]).then(([lights, darks, squares, circulars, cylinders]) =>{this.lights=lightsthis.darks=darksthis.squares=squaresthis.circulars=circularsthis.cylinders=cylinders})},computed:{skeletonStyle(){return {backgroundColor:this.backgroundColor,top:this.top}}},methods: {selectAll(selector) {return new Promise(resolve =>{let domList = document.querySelectorAll(selector)let resultList = []for(let a=0;a<domList.length;a++){resultList.push(domList[a].getBoundingClientRect())}console.log('domList',domList)resolve(resultList)})},createStyle({ width, height, top, left }){return {width: `${width}px`,height: `${height}px`,top: `${top}px`,left: `${left}px`,}},createCylinderStyle(rect){return {...this.createStyle(rect),'border-radius': `${rect.height / 2}px`,}}}}
</script><style scoped lang="scss">
@import "./index";
</style>

(2)index.scss

$max-index: 1000;
$skeleton-index: $max-index - 3;
$skeleton-item-index: $skeleton-index + 2;
$skeleton-container-index: $skeleton-index + 1;
$grey-background-color: #f5f5f5;
$border-radius: 8px;
.skeleton {position: fixed;top: 0;left: 0;display: block;width: 100%;height: 100vh;z-index: 9997;overflow: hidden;.item {position: fixed;display: inline-block;background: $grey-background-color;z-index: $skeleton-item-index;&.dark,&.light {z-index: $skeleton-container-index;}&.square {border-radius: $border-radius;}&.circular {border-radius: 50%;}}
}

3、使用demo

<template><div class="home-wrapper"><!--仅仅移除骨架屏组件即可--><vueSkeleton v-if="loading"></vueSkeleton><div class="banner skeleton-square"><img :src="banner" alt=""></div><div class="logo-wrapper"><div class="logo skeleton-circular" v-for="a in 3" :key="'logo'+a"></div></div><div class="content"></div></div>
</template><script type="text/ecmascript-6">
import vueSkeleton  from './index'export default {name:'vueSkeleton',components:{vueSkeleton},data(){return{loading:true,// 如有需要,先默认数据以撑开元素大小和位置banner:'http://img5.imgtn.bdimg.com/it/u=1768436016,3486987531&fm=26&gp=0.jpg',}},created() {this.getData()},methods:{getData(){setTimeout(()=>{this.loading=false},300)}}}
</script><style lang="scss" scoped>
@import "./index";
.home-wrapper{width: 100%;.banner{width: 100%;height: 175px;}.logo-wrapper{width: 100%;padding: 0 15px;box-sizing: border-box;display: flex;.logo{border-radius: 50%;width: 105px;height: 105px;margin-right: 15px;&:last-child{margin-right: 0;}}}.content{width: 100%;height: 300px;}
}
</style>

4、Taro骨架屏也写了一下

https://blog.csdn.net/u010214074/article/details/90120727

5、github地址:

https://github.com/chenkongming/vue-skeleton

这篇关于vue 骨架屏组件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/972288

相关文章

CSS place-items: center解析与用法详解

《CSSplace-items:center解析与用法详解》place-items:center;是一个强大的CSS简写属性,用于同时控制网格(Grid)和弹性盒(Flexbox)... place-items: center; 是一个强大的 css 简写属性,用于同时控制 网格(Grid) 和 弹性盒(F

CSS实现元素撑满剩余空间的五种方法

《CSS实现元素撑满剩余空间的五种方法》在日常开发中,我们经常需要让某个元素占据容器的剩余空间,本文将介绍5种不同的方法来实现这个需求,并分析各种方法的优缺点,感兴趣的朋友一起看看吧... css实现元素撑满剩余空间的5种方法 在日常开发中,我们经常需要让某个元素占据容器的剩余空间。这是一个常见的布局需求

CSS Anchor Positioning重新定义锚点定位的时代来临(最新推荐)

《CSSAnchorPositioning重新定义锚点定位的时代来临(最新推荐)》CSSAnchorPositioning是一项仍在草案中的新特性,由Chrome125开始提供原生支持需... 目录 css Anchor Positioning:重新定义「锚定定位」的时代来了! 什么是 Anchor Pos

CSS中的Static、Relative、Absolute、Fixed、Sticky的应用与详细对比

《CSS中的Static、Relative、Absolute、Fixed、Sticky的应用与详细对比》CSS中的position属性用于控制元素的定位方式,不同的定位方式会影响元素在页面中的布... css 中的 position 属性用于控制元素的定位方式,不同的定位方式会影响元素在页面中的布局和层叠关

HTML5 getUserMedia API网页录音实现指南示例小结

《HTML5getUserMediaAPI网页录音实现指南示例小结》本教程将指导你如何利用这一API,结合WebAudioAPI,实现网页录音功能,从获取音频流到处理和保存录音,整个过程将逐步... 目录1. html5 getUserMedia API简介1.1 API概念与历史1.2 功能与优势1.3

全面解析HTML5中Checkbox标签

《全面解析HTML5中Checkbox标签》Checkbox是HTML5中非常重要的表单元素之一,通过合理使用其属性和样式自定义方法,可以为用户提供丰富多样的交互体验,这篇文章给大家介绍HTML5中C... 在html5中,Checkbox(复选框)是一种常用的表单元素,允许用户在一组选项中选择多个项目。本

HTML5 搜索框Search Box详解

《HTML5搜索框SearchBox详解》HTML5的搜索框是一个强大的工具,能够有效提升用户体验,通过结合自动补全功能和适当的样式,可以创建出既美观又实用的搜索界面,这篇文章给大家介绍HTML5... html5 搜索框(Search Box)详解搜索框是一个用于输入查询内容的控件,通常用于网站或应用程

CSS3中的字体及相关属性详解

《CSS3中的字体及相关属性详解》:本文主要介绍了CSS3中的字体及相关属性,详细内容请阅读本文,希望能对你有所帮助... 字体网页字体的三个来源:用户机器上安装的字体,放心使用。保存在第三方网站上的字体,例如Typekit和Google,可以link标签链接到你的页面上。保存在你自己Web服务器上的字

html 滚动条滚动过快会留下边框线的解决方案

《html滚动条滚动过快会留下边框线的解决方案》:本文主要介绍了html滚动条滚动过快会留下边框线的解决方案,解决方法很简单,详细内容请阅读本文,希望能对你有所帮助... 滚动条滚动过快时,会留下边框线但其实大部分时候是这样的,没有多出边框线的滚动条滚动过快时留下边框线的问题通常与滚动条样式和滚动行

Spring组件实例化扩展点之InstantiationAwareBeanPostProcessor使用场景解析

《Spring组件实例化扩展点之InstantiationAwareBeanPostProcessor使用场景解析》InstantiationAwareBeanPostProcessor是Spring... 目录一、什么是InstantiationAwareBeanPostProcessor?二、核心方法解