cyber/src/components/DefaultCover.vue
Guarp af2ba6b1a3 添加缓存逻辑;
完成稿件管理逻辑;
新增博客编辑器;
新增博客;
新增请求测试小工具;
修改sweetheart样式;
打包用户头像组件;
新增导航栏隐藏功能;
新增3D打枪小游戏;
2025-03-13 23:52:31 +08:00

52 lines
1.1 KiB
Vue

<script setup>
import { ref } from "vue";
import { setRandomBGCL } from "../utils/randomBGCL.js";
defineProps({
text: {
type: String,
required: true
},
imageSrc: {
type: String,
required: true
},
size: {
type: Number,
required: false,
default: 200
}
});
const imageLoaded = ref(false);
</script>
<template>
<div class="image-container" :style="{background: setRandomBGCL(text), height: size + 'px'}">
<img :src="imageSrc" alt="image" class="image"
:style="{height: size + 'px', display: imageLoaded ? 'block' : 'none'}"
@load="imageLoaded = true"
@error="imageLoaded = false" />
<div v-if="!imageLoaded" class="cover-character" :style="{fontSize: size + 'px'}">
{{ text[0] }}
</div>
</div>
</template>
<style scoped>
.image-container {
width: 100%;
}
.image-container .cover-character {
width: 100%;
height: 100%;
font-family: 'huangkaihua', Tahoma, Geneva, Verdana, sans-serif;
color: gray;
mix-blend-mode: difference;
}
.image {
width: 100%;
object-fit: cover;
}
</style>