index.wxml 1.2 KB

123456789101112131415161718192021222324
  1. <!--pagesPublic/pages/tdcr/index.wxml-->
  2. <view class="main" style="background-image: url({{imgPath}}/index/bg.png);">
  3. <image class="main-header" src="{{imgPath}}/index/header.png" />
  4. <view class="cursor-guy">
  5. <image class="cursor-size" wx:for="{{cursorGuys}}" src="{{imgPath}}/index/cursor.png"
  6. style="margin-left: {{item.left}}vw;margin-top: {{item.top}}vh;"/>
  7. </view>
  8. <view class="main-content" style="background-image: url({{imgPath}}/index/content-bg.png);">
  9. <view class="item" wx:for="{{cursors}}" style="left: {{item.left}}vw;top: {{item.top}}vh;">
  10. <view class="item-title">
  11. <text>{{item.txt}}</text>
  12. </view>
  13. <image class="item-img" src="{{imgPath}}/index/cursor2.png"
  14. style="left: {{item.dropLeft}}vw;top: {{item.dropTop}}vh;"/>
  15. </view>
  16. </view>
  17. <view class="list">
  18. <view class="list-item" wx:for="{{list}}" style="margin-left: {{item.left}}vw;margin-top: {{item.top}}vh;">
  19. <image class="list-item-img" src="{{imgPath}}/index/{{item.icon}}"/>
  20. <view class="list-item-txt"><text>{{item.txt}}</text></view>
  21. </view>
  22. </view>
  23. <view class="bottom-btn" style="background-image: url({{imgPath}}/index/btn.png);">共创文明新南岸</view>
  24. </view>