赞
踩
<template> <div class="xtx-skeleton" :style="{width,height}" :class="{shan:animated}"> <!-- 1 盒子--> <div class="block" :style="{backgroundColor:bg}">jjw</div> <!-- 2 闪效果 xtx-skeleton 伪元素 ---> </div> </template> <script> export default { name: 'HelloWorld', // 使用的时候需要动态设置 高度,宽度,背景颜色,是否闪下 props: { bg: { type: String, default: '#efefef' }, width: { type: String, default: '100px' }, height: { type: String, default: '100px' }, animated: { type: Boolean, default: false } } } </script> <style scoped lang="less"> .xtx-skeleton { display: inline-block; position: relative; overflow: hidden; vertical-align: middle; .block { width: 100%; height: 100%; border-radius: 2px; } } .shan { &::after { content: ""; position: absolute; animation: shan 1.5s ease 0s infinite; top: 0; width: 50%; height: 100%; background: linear-gradient( to left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100% ); transform: skewX(-45deg); } } @keyframes shan { 0% { left: -100%; } 100% { left: 120%; } } </style>
// 扩展vue原有的功能:全局组件,自定义指令,挂载原型方法,注意:没有全局过滤器。
// 这就是插件
// vue2.0插件写法要素:导出一个对象,有install函数,默认传入了Vue构造函数,Vue基础之上扩展
// vue3.0插件写法要素:导出一个对象,有install函数,默认传入了app应用实例,app基础之上扩展
import HelloWorld from "@/components/HelloWorld.vue";
export default {
install (app) {
// 在app上进行扩展,app提供 component directive 函数
// 如果要挂载原型 app.config.globalProperties 方式
app.component(HelloWorld.name, HelloWorld)
}
}
import { createApp } from 'vue'
import App from './App.vue'
import './assets/reset.css'
// 就是下边这一行,将其导入然后挂载到app上
import ui from './helloworld'
// 插件的使用,在main.js使用app.use(插件)
createApp(App).use(ui).mount('#app')
<template>
<HelloWorld width="60px" height="18px" style="margin-right:5px" bg="rgba(0,0,255,0.2)" animated />
<HelloWorld width="60px" height="18px" style="margin-right:5px" bg="deeppink" animated />
</template>
<script setup>
</script>
<style lang="less" scoped>
// 这个类选择器是组件内部的类
.xtx-skeleton {
margin-left: 50px;
}
</style>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。