index.wxml 1017 B

123456789101112131415161718192021222324252627
  1. <!--components/loading/index.wxml-->
  2. <view class="loading-container" bindtap="{{showExploreButton ? 'goToIndexPage' : ''}}">
  3. <!-- 进度条加载页面 -->
  4. <view class="car-loading" wx:if="{{showProgressBar}}">
  5. <view class="car-container">
  6. <view class="car"></view>
  7. </view>
  8. <view class="progress-container">
  9. <image src="https://swkz-1332577016.cos.ap-guangzhou.myqcloud.com/imgs/loading/process.png" class="progress-bg" mode="widthFix" />
  10. <view class="custom-progress-bar">
  11. <view class="progress-fill" style="width: {{progress}}%"></view>
  12. </view>
  13. <view class="progress-text">{{progress}}%</view>
  14. </view>
  15. </view>
  16. <!-- Logo加载页面 -->
  17. <view wx:if="{{showLogo}}" class="logo-container">
  18. <view class="logo"></view>
  19. <view wx:if="{{showExploreButton}}" class="explore-button" bindtap="goToIndexPage">
  20. <view class="explore-line-left"></view>
  21. 开始探索
  22. <view class="explore-line-right"></view>
  23. </view>
  24. </view>
  25. </view>