10 lines
310 B
Plaintext
10 lines
310 B
Plaintext
<!--components/background/raindrop/index.wxml-->
|
|
<view class="raindrops" style="width: {{docWidth}}px; height: {{docHeight}}px;">
|
|
<view
|
|
class="raindrop"
|
|
wx:for="{{raindrops}}"
|
|
wx:key="index"
|
|
style="left: {{item.x}}px; height: {{item.length}}px; animation-duration: {{item.speed}}s;"
|
|
></view>
|
|
</view>
|