Files
shoot-miniprograms/src/pages/first-try.vue

33 lines
785 B
Vue
Raw Normal View History

2025-05-01 16:36:24 +08:00
<script setup>
import AppBackground from "@/components/AppBackground.vue";
2025-05-01 21:50:12 +08:00
import Header from "@/components/Header.vue";
2025-05-01 22:58:02 +08:00
import Guide from "@/components/Guide.vue";
2025-05-01 16:36:24 +08:00
</script>
<template>
<view>
<AppBackground />
2025-05-01 21:50:12 +08:00
<Header title="新手试炼场" />
2025-05-01 22:58:02 +08:00
<Guide
title="hiRocker这是新人必刷小任务0基础小白也能快速掌握弓箭技巧和游戏规则哦~"
/>
<image src="../static/first-try-tip.png" class="try-tip" mode="widthFix" />
<button class="start-btn">开始</button>
2025-05-01 16:36:24 +08:00
</view>
</template>
<style scoped>
2025-05-01 22:58:02 +08:00
.try-tip {
width: calc(100% - 20px);
margin: 10px 10px;
2025-05-01 16:36:24 +08:00
}
2025-05-01 22:58:02 +08:00
.start-btn {
margin: 0 10px;
width: calc(100% - 20px);
background-color: #fed847;
font-size: 15px;
padding: 3px;
border-radius: 10px;
2025-05-01 16:36:24 +08:00
}
</style>