index.wxml 711 B

1234567891011121314151617
  1. <view>
  2. <xr-last-record
  3. disable-scroll
  4. id="main-frame"
  5. width="{{renderWidth}}"
  6. height="{{renderHeight}}"
  7. style="width:{{width}}px;height:{{height}}px;top:{{top}}px;left:{{left}}px;display:block;"
  8. bind:changeTexts="handleChangeTexts"
  9. bind:showNote="handleShowNote"
  10. />
  11. <block wx:for="{{texts}}" wx:for-item="text" wx:key="id">
  12. <view style="display: block; width: 218px; position: absolute;left: {{text.x}}px;top: {{text.y}}px;transform: translate(-50%, -50%);">
  13. <view style="display: inlin-block;background: rgba(44, 44, 44, 0.5);text-align: center;color: white;font-size: 16px;padding: 8px;word-break: break-all;">{{text.content}}</view>
  14. </view>
  15. </block>
  16. </view>