更新记录
1.0.6(2021-03-21) 下载此版本
更新readme
1.0.5(2021-03-20) 下载此版本
只能播放本身 指定src
1.0.4(2021-03-20) 下载此版本
只保留一个play方法 用来控制播放暂停
查看更多平台兼容性
uni-app
Vue2 | Vue3 | Chrome | Safari | app-vue | app-nvue | Android | iOS | 鸿蒙 |
---|---|---|---|---|---|---|---|---|
- | - | √ | - | - | - | - | - | - |
微信小程序 | 支付宝小程序 | 抖音小程序 | 百度小程序 | 快手小程序 | 京东小程序 | 鸿蒙元服务 | QQ小程序 | 飞书小程序 | 快应用-华为 | 快应用-联盟 |
---|---|---|---|---|---|---|---|---|---|---|
√ | - | - | - | - | - | - | - | - | - | - |
其他
多语言 | 暗黑模式 | 宽屏模式 |
---|---|---|
× | × | √ |
zzlb-audio-play
普通的音频播放组件,点击即可播放
调用方法
```html
<zzlb-audio-play src="1.mp3"></zzlb-audio-play>
```
接受插槽修改内容
```html
<zzlb-audio-play v-for="(mp3, mp3index) in recordlist.filter(f => f.page_id == currentitem.storypage_id)" :src="$httpurl(mp3.url)">
<template #default="{isplaying}">
<view class="text-center padding flex align-center">
<button class="cu-btn shadow lg flex-direction" :class="{ 'bg-green': isplaying, 'bg-red': !isplaying }">
<text :class="{ 'cuIcon-playfill': !isplaying, 'cuIcon-stopfill': isplaying }"></text>
<view class=" text-sm">{{ (mp3.duration / 1000).toFixed(0) }}s语音</view>
<view class=" text-sm">{{ mp3.create_time }}</view>
</button>
<view @click.stop="onremovemp3(mp3)" class=" text-xsl cuIcon-close" v-if="mp3.read_id == read.read_id"></view>
</view>
</template>
</zzlb-audio-play>
```