123456789101112131415161718192021222324252627282930313233343536373839 |
- <view class='content'>
- <view class='made-content'>
- <view class='made-img-box'>
- <image class='made-img-image_1' src='{{obverseImgObject[isActive+"_1"]}}' mode="aspectFill"></image>
- <image class='made-img-image' src='{{obverseImgObject[isActive]}}' mode="aspectFill"></image>
- <made-solid prop-position="{{dataPositionObj}}" prop-size="{{propSize}}">
- <view class='f-box f-align-items-center f-justify-content-center made-prompt ' style='text-align:center' wx:if="{{touchStatic}}">{{fontContent}}</view>
- <view class='made-box'>
- <!-- img -->
- <view wx:if="{{!touchStatic}}" class='edit-content' style='top:{{imgTouch.y}}px;left:{{imgTouch.x}}px'>
- <view animation="{{imgAnimationData}}">
- <image src="{{imgTouch.src}}" mode="aspectFit" style='width:{{imgTouch.width}}rpx;height:{{imgTouch.height}}rpx'></image>
- </view>
- </view>
- <!-- font -->
- <view wx:if="{{!touchStatic}}" class='made-prompt made-font' style='color:{{fontTouch.isColor}};font-size:{{fontTouch.fontSize}}px;width:{{999999999999999999999999}}rpx;height:{{dataPositionObj.height}}rpx;font-weight:{{fontTouch.bold}};'>
- <view class='font-content' style='top:{{fontTouch.y}}px;left:{{fontTouch.x}}px;width:{{dataPositionObj.width}}rpx;height:{{dataPositionObj.height}}rpx;' animation="{{fontAnimationData}}">
- <view id='touchFont' style='font-weight:{{fontTouch.bold ? "bold":""}}'>{{fontTouch.fontContent}}</view>
- </view>
- </view>
- </view>
- </made-solid>
- </view>
- </view>
- <view class='footer' hover-class="none">
- <view class='footer-box f-box f-justify-content-between f-align-items-center'>
- <view class='f-item footer-btn' bindtap='addImgRouter' hover-class="none">添加图片</view>
- <view class='f-item footer-btn' bindtap='addFontRouter' hover-class="none">添加文字</view>
- <view class='f-item footer-btn' bindtap='finishDesign' hover-class="none">完成设计</view>
- </view>
- </view>
- </view>
- <text class='font-height' style='font-size:{{simulation.fontSize}}px;position:fixed;top:999999999999999999999rpx;' id='simulation'>{{simulation.fontContent}}</text>
|