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.

16 lines
553 B

<view class="content-play">
<view class="content-play-info">
<text>{{play.title}}</text>
<view>-{{play.singer}}-</view>
</view>
<view class="content-play-cover">
<image src="{{play.coverImgUrl}}" style="animation-play-state: {{state}};" />
</view>
<view class="content-play-progress">
<text>{{play.currentTime}}</text>
<view>
<slider bindchange="sliderChange" activeColor="#d333a31" block-size="12" backgroundColor="#dadada" value="{{play.percent}}" />
</view>
<text>{{play.duration}}</text>
</view>
</view>