Initial Commit
This commit is contained in:
commit
1d71a02738
237 changed files with 64293 additions and 0 deletions
20
components/page-transition/page-transition.wxml
Normal file
20
components/page-transition/page-transition.wxml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<!-- 🎬 页面过渡组件 -->
|
||||
<view class="page-transition-container {{transitionClass}}"
|
||||
style="{{animationStyle}}"
|
||||
animation="{{animationData}}">
|
||||
|
||||
<!-- 页面内容插槽 -->
|
||||
<slot></slot>
|
||||
|
||||
<!-- 过渡遮罩 -->
|
||||
<view wx:if="{{showOverlay}}"
|
||||
class="transition-overlay {{overlayClass}}"
|
||||
style="{{overlayStyle}}">
|
||||
</view>
|
||||
|
||||
<!-- 加载指示器 -->
|
||||
<view wx:if="{{showLoading}}" class="transition-loading">
|
||||
<view class="loading-spinner" animation="{{loadingAnimation}}"></view>
|
||||
<text class="loading-text">{{loadingText}}</text>
|
||||
</view>
|
||||
</view>
|
||||
Loading…
Add table
Add a link
Reference in a new issue