cyber/src/pages/Home.vue

52 lines
860 B
Vue
Raw Normal View History

2025-02-14 23:14:54 +08:00
<script setup>
</script>
<template>
<div class="container-pig">
<img alt="猪图" src="https://q6.itc.cn/images01/20241006/86f4aab7fded4c2283842e79f7e6eda3.jpeg"/>
2025-02-21 20:10:37 +08:00
<h1>6A级金牌养猪基地 2010测试</h1>
2025-02-14 23:14:54 +08:00
</div>
</template>
<style>
.container-pig {
display: flex;
align-items: center;
flex-direction: column;
margin: 0;
width: 100%;
height: 100%;
}
.container-pig img {
position:absolute ;
bottom: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.container-pig h1 {
z-index: 19;
2025-02-18 15:31:25 +08:00
font-family: 'huangkaihua', Tahoma, Geneva, Verdana, sans-serif;
2025-02-14 23:14:54 +08:00
font-size: 80px;
2025-02-18 15:31:25 +08:00
//font-weight: bold;
2025-02-14 23:14:54 +08:00
animation: flashColors 0.5s infinite;
}
@keyframes flashColors {
0% {
color: red;
}
49.9% {
color: red;
}
50% {
color: yellow;
}99.9% {
color: yellow;
}
100% {
color: red;
}
}
</style>