From 68677fa7e5cce5e4cd14a91a9666e9da4398faf7 Mon Sep 17 00:00:00 2001
From: "1054425342@qq.com" <1054425342@qq.com>
Date: Wed, 20 Aug 2025 10:23:27 +0800
Subject: [PATCH] =?UTF-8?q?=E5=81=9C=E7=95=99=E6=97=B6=E9=97=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
App.vue | 605 +++++++++++++++++++++++++++++++++++++-------------------
1 file changed, 398 insertions(+), 207 deletions(-)
diff --git a/App.vue b/App.vue
index 723f4b5..0e90974 100644
--- a/App.vue
+++ b/App.vue
@@ -1,211 +1,402 @@
\ No newline at end of file
+@font-face {
+ font-family: "Futura";
+ src: url(https://static.ticket.sz-trip.com/epicSoul/taozi/fonts/Futura.ttc);
+}
+/*每个页面公共css */
+@import "@/uni_modules/uni-scss/index.scss";
+@import "@/static/css/base.css";
+
+/* #ifndef APP-NVUE */
+// 设置整个项目的背景色
+page {
+ background-color: #f5f5f5;
+}
+
+/* #endif */
+.example-info {
+ font-size: 14px;
+ color: #333;
+ padding: 10px;
+}
+
+/* 清除按钮默认样式 */
+button::after {
+ border: none;
+}
+
+@keyframes bounce {
+ 0%,
+ 20%,
+ 50%,
+ 80%,
+ 100% {
+ transform: translateY(0);
+ }
+
+ 40% {
+ transform: translateY(-20rpx);
+ }
+
+ 60% {
+ transform: translateY(-10rpx);
+ }
+}
+
+/* 音乐控制按钮动画 */
+@keyframes rotate {
+ from {
+ transform: rotate(0deg);
+ }
+
+ to {
+ transform: rotate(360deg);
+ }
+}
+
+/* 隐藏微信小程序默认音频组件 */
+#mp-audio {
+ display: none;
+}
+