You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
755 B
8 lines
755 B
3 years ago
|
<view style="position:relative;width:100%;">
|
||
|
<view style="position:absolute;width:100%;visibility:hidden;">
|
||
|
<canvas style="width:100%;height: {{height}}px;" id="canvas" canvas-id="canvas"></canvas>
|
||
|
</view>
|
||
|
<view style="position:relative;">
|
||
|
<view wx:for="{{spans}}" wx:key="{{index}}" style="position:absolute;left:{{((item.gx + item.info.gw / 2) * item.g + item.info.fillTextOffsetX)}}px;top:{{((item.gy + item.info.gh / 2) * item.g + item.info.fillTextOffsetY)}}px;width:{{item.info.fillTextWidth * 2}}px;height:{{item.info.fillTextHeight}}px;line-height:{{item.fontSize}}px;font-size:{{(item.fontSize * item.info.mu)}}px; transform:{{item.transformRule}};transformOrigin:50% 40%;color:{{item.color}}">{{item.word}}</view>
|
||
|
</view>
|
||
|
</view>
|