2020-12-08 16:49:29 +08:00
|
|
|
<!--pages/API/audio/audio.wxml-->
|
|
|
|
<import src="../../common/head.wxml" />
|
|
|
|
<import src="../../common/foot.wxml" />
|
|
|
|
|
|
|
|
<view class="container">
|
|
|
|
<template is="head" data="{{title: 'audio'}}"/>
|
|
|
|
<view>
|
2021-04-27 17:03:14 +08:00
|
|
|
<audio name="{{name}}" src="{{src}}" id="myAudio" controls ></audio>
|
2020-12-08 16:49:29 +08:00
|
|
|
|
|
|
|
<button type="primary" bindtap="audioPlay">播放</button>
|
|
|
|
<button type="primary" bindtap="audioPause">暂停</button>
|
|
|
|
<button type="primary" bindtap="audio14">设置当前播放时间为14秒</button>
|
|
|
|
<button type="primary" bindtap="audioStart">回到开头</button>
|
|
|
|
</view>
|
|
|
|
<template is="foot" />
|
|
|
|
</view>
|