primevue-mirror/components/skeleton/Skeleton.vue

87 lines
1.8 KiB
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
2022-12-08 11:04:25 +00:00
<div :style="containerStyle" :class="containerClass" aria-hidden="true"></div>
2022-09-06 12:03:37 +00:00
</template>
<script>
export default {
name: 'Skeleton',
props: {
shape: {
type: String,
default: 'rectangle'
},
size: {
type: String,
default: null
},
width: {
type: String,
default: '100%'
},
height: {
type: String,
default: '1rem'
},
borderRadius: {
type: String,
default: null
},
animation: {
type: String,
default: 'wave'
}
},
computed: {
containerClass() {
2022-09-14 11:26:01 +00:00
return [
'p-skeleton p-component',
{
'p-skeleton-circle': this.shape === 'circle',
'p-skeleton-none': this.animation === 'none'
}
];
2022-09-06 12:03:37 +00:00
},
containerStyle() {
2022-09-14 11:26:01 +00:00
if (this.size) return { width: this.size, height: this.size, borderRadius: this.borderRadius };
else return { width: this.width, height: this.height, borderRadius: this.borderRadius };
2022-09-06 12:03:37 +00:00
}
}
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
</script>
<style>
.p-skeleton {
position: relative;
overflow: hidden;
}
.p-skeleton::after {
2022-09-14 11:26:01 +00:00
content: '';
2022-09-06 12:03:37 +00:00
animation: p-skeleton-animation 1.2s infinite;
height: 100%;
left: 0;
position: absolute;
right: 0;
top: 0;
transform: translateX(-100%);
z-index: 1;
}
.p-skeleton.p-skeleton-circle {
border-radius: 50%;
}
.p-skeleton-none::after {
2022-09-14 11:26:01 +00:00
animation: none;
2022-09-06 12:03:37 +00:00
}
@keyframes p-skeleton-animation {
from {
transform: translateX(-100%);
}
to {
transform: translateX(100%);
}
}
</style>