123456789101112131415161718192021222324 |
- <!--pagesPublic/pages/tdcr/index.wxml-->
- <view class="main" style="background-image: url({{imgPath}}/index/bg.png);">
- <image class="main-header" src="{{imgPath}}/index/header.png" />
- <view class="cursor-guy">
- <image class="cursor-size" wx:for="{{cursorGuys}}" src="{{imgPath}}/index/cursor.png"
- style="margin-left: {{item.left}}vw;margin-top: {{item.top}}vh;"/>
- </view>
- <view class="main-content" style="background-image: url({{imgPath}}/index/content-bg.png);">
- <view class="item" wx:for="{{cursors}}" style="left: {{item.left}}vw;top: {{item.top}}vh;">
- <view class="item-title">
- <text>{{item.txt}}</text>
- </view>
- <image class="item-img" src="{{imgPath}}/index/cursor2.png"
- style="left: {{item.dropLeft}}vw;top: {{item.dropTop}}vh;"/>
- </view>
- </view>
- <view class="list">
- <view class="list-item" wx:for="{{list}}" style="margin-left: {{item.left}}vw;margin-top: {{item.top}}vh;">
- <image class="list-item-img" src="{{imgPath}}/index/{{item.icon}}"/>
- <view class="list-item-txt"><text>{{item.txt}}</text></view>
- </view>
- </view>
- <view class="bottom-btn" style="background-image: url({{imgPath}}/index/btn.png);">共创文明新南岸</view>
- </view>
|