完成新手试炼页面

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 {
color: #fff;
font-size: 14px;
font-size: 13px;
}
</style>

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 609 KiB