This commit is contained in:
X1627315083@163.com
2026-04-21 15:57:37 +08:00
parent 14b8ead78f
commit 282a5b2252
27 changed files with 595 additions and 20 deletions

View File

@@ -49,6 +49,7 @@ const {} = toRefs(data);
<div class="content">
<Detail></Detail>
</div>
<Footer></Footer>
</div>
</template>
<style lang="less" scoped>
@@ -121,6 +122,18 @@ const {} = toRefs(data);
display: flex;
flex-direction: column;
color: #fff;
animation: scroll 3s linear infinite;
@keyframes scroll {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-20%);
}
100% {
transform: translateY(0%);
}
}
> div{
font-family: 'KaiseiOpti-Regular';
font-weight: 400;
@@ -139,8 +152,8 @@ const {} = toRefs(data);
}
.content{
width: 100%;
min-height: 100%;
height: 100%;
// min-height: 100%;
// height: 100%;
}
}