赞
踩
以下是一个简单的微信小程序音乐播放应用的代码案例。这个应用将包括以下功能:显示音乐列表、播放音乐、暂停音乐、切换音乐、显示当前播放状态。
首先,创建一个新的微信小程序项目。在项目根目录下创建三个文件夹:pages、utils和images。在pages文件夹中创建两个页面:index和player。
index页面:
- <view class="container">
-
- <view class="song-list">
- <block wx:for="{
- {songList}}" wx:key="index">
- <view class="song-item" bindtap="playSong" data-index="{
- {index}}">
- <image class="song-cover" src="{
- {item.coverUrl}}"></image>
- <view class="song-info">
- <view class="song-name">{
- {item.name}}</view>
- <view class="song-artist">{
- {item.artist}}</view>
- </view>
- </view>
- <
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。