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.

21 lines
696 B

1 year ago
<view class="content-play">
<!-- 显示音乐信息 -->
<view class="conten-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.currenTime}}</text>
  <view>
<slider bindchange="sliderChange" activeColor="#d33a31" block-size="12" backgroundColor="#dadada" value="{{play.percent}}"/>
  </view>
  <text>{{play.duration}}</text>
</view>
</view>