17 lines
978 B
Plaintext
17 lines
978 B
Plaintext
<!--<canvas canvas-id="skeleton" disable-scroll="true"></canvas>-->
|
|
<view style="width: {{systemInfo.width}}px; height: {{systemInfo.height}}px; background-color: {{bgcolor}}; position: absolute; left:0; top:0; z-index:9998; overflow: hidden;">
|
|
|
|
<view wx:for="{{skeletonRectLists}}" wx:key="{{index}}" class="{{loading == 'chiaroscuro' ? 'chiaroscuro' : ''}}" style="width: {{item.width}}px; height: {{item.height}}px; background-color: rgb(238,238,238); position: absolute; left: {{item.left}}px; top: {{item.top}}px">
|
|
|
|
</view>
|
|
<view wx:for="{{skeletonCircleLists}}" wx:key="{{index}}" class="{{loading == 'chiaroscuro' ? 'chiaroscuro' : ''}}" style="width: {{item.width}}px; height: {{item.height}}px; background-color: rgb(238,238,238); border-radius: {{item.width}}px; position: absolute; left: {{item.left}}px; top: {{item.top}}px">
|
|
|
|
</view>
|
|
|
|
<view class="spinbox" wx:if="{{loading == 'spin'}}">
|
|
<view class="spin"></view>
|
|
|
|
</view>
|
|
|
|
|
|
</view> |