完成新手试炼页面

This commit is contained in:
kron
2025-05-01 22:58:02 +08:00
parent 76fac85cb6
commit 396599e379
3 changed files with 17 additions and 13 deletions

View File

@@ -37,6 +37,6 @@ defineProps({
} }
.container > view > text { .container > view > text {
color: #fff; color: #fff;
font-size: 14px; font-size: 13px;
} }
</style> </style>

View File

@@ -1,28 +1,32 @@
<script setup> <script setup>
import AppBackground from "@/components/AppBackground.vue"; import AppBackground from "@/components/AppBackground.vue";
import Header from "@/components/Header.vue"; import Header from "@/components/Header.vue";
import Guide from "@/components/Guide.vue";
</script> </script>
<template> <template>
<view> <view>
<AppBackground /> <AppBackground />
<Header title="新手试炼场" /> <Header title="新手试炼场" />
<Guide
title="hiRocker这是新人必刷小任务0基础小白也能快速掌握弓箭技巧和游戏规则哦~"
/>
<image src="../static/first-try-tip.png" class="try-tip" mode="widthFix" />
<button class="start-btn">开始</button>
</view> </view>
</template> </template>
<style scoped> <style scoped>
.back-btn { .try-tip {
position: fixed; width: calc(100% - 20px);
top: 2rem; margin: 10px 10px;
left: 2rem;
padding: 0.5rem 1rem;
background-color: #007aff;
color: #fff;
border-radius: 5px;
font-size: 14px;
} }
.start-btn {
.back-hover { margin: 0 10px;
opacity: 0.8; width: calc(100% - 20px);
background-color: #fed847;
font-size: 15px;
padding: 3px;
border-radius: 10px;
} }
</style> </style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 609 KiB