first commit
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
<!-- 启动页 —— 沉浸式暖棕主题 -->
|
||||
<page-meta page-style="overflow:hidden; background:#1A1208;" />
|
||||
<view class="splash-page">
|
||||
|
||||
<!-- 环境光 -->
|
||||
<view class="splash-glow"></view>
|
||||
|
||||
<!-- 主内容 -->
|
||||
<view class="splash-content {{loginState === 'success' ? 'fade-out' : ''}}">
|
||||
|
||||
<!-- 收音机图标 + 脉冲 -->
|
||||
<view class="logo-wrap">
|
||||
<view class="pulse-ring" wx:if="{{loginState === 'loading'}}"></view>
|
||||
<view class="pulse-ring pulse-ring-2" wx:if="{{loginState === 'loading'}}"></view>
|
||||
<text class="logo-icon">📻</text>
|
||||
</view>
|
||||
|
||||
<!-- 应用名 + slogan -->
|
||||
<text class="app-title">全声汇</text>
|
||||
<text class="app-sub">QuanShengHui</text>
|
||||
<text class="app-slogan">好内容,随时听</text>
|
||||
|
||||
<!-- 状态 -->
|
||||
<view class="status-area">
|
||||
<view wx:if="{{loginState === 'loading'}}" class="status-row">
|
||||
<view class="loading-dots">
|
||||
<view class="dot" style="animation-delay:0s"></view>
|
||||
<view class="dot" style="animation-delay:0.2s"></view>
|
||||
<view class="dot" style="animation-delay:0.4s"></view>
|
||||
</view>
|
||||
</view>
|
||||
<view wx:elif="{{loginState === 'success'}}" class="status-row">
|
||||
<text class="status-check">✓</text>
|
||||
<text class="status-ok">已就绪</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
|
||||
<!-- 底部版权 -->
|
||||
<view class="splash-footer">
|
||||
<text class="footer-text">每天三分钟,精准获取所需</text>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
Reference in New Issue
Block a user