
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
v-audio-player
Advanced tools
A audio player vue component based on html5.
npm i v-audio-player
<template>
<div id="app">
<v-audio-player :audio="audio" ref="audio"></v-audio-player>
</div>
</template>
<script>
import VAudioPlayer from '../src/index.js'
export default {
data () {
return {
audio: {
name: 'Sometimes When We Touch',
loop: true,
url: 'https://fengxianqi.github.io/v-audio-player/dist/media/sometimes_when_we_touch.010fafb2.mp3'
}
}
},
components: {
VAudioPlayer
}
}
</script>
audio 属性下:
| name | Explanation | Type | Default |
|---|---|---|---|
| url | 音频路径 | string | |
| name | 音频名称 | string | |
| autoplay | 是否自动播放 | bool | true |
| loop | 是否循环播放 | bool | false |
暴露一些audio标签默认的常用事件
| name | Explanation |
|---|---|
| play | 音频开始播放时触发 |
| pause | 音频暂停时触发 |
| loadstart | 音频开始加载时 |
| progress | 音频正在加载时 |
| canplay | 音频可以播放时 |
| error | 音频加载失败或出现错误时 |
| ended | 音频播放结束时触发 |
<template>
<v-audio-player :audio="audio" @play="onPlay" @ended="onEnded"></v-audio-player>
</template>
<script>
export default {
data () {
return {
audio: {
name: 'Sometimes When We Touch',
url: 'https://fengxianqi.github.io/v-audio-player/dist/media/sometimes_when_we_touch.010fafb2.mp3'
}
}
},
methods: {
onPlay (e) {
console.log('onplay', e)
},
onEnded (e) {
console.log('this audio play ended', e)
}
}
}
</script>
可以通过ref来调用音频的方法,如
<v-audio-player :audio="audio" ref="audio"></v-audio-player>
| name | Explanation |
|---|---|
| this.$refs.audio.play() | 播放音频 |
| this.$refs.audio.pause() | 暂停音频 |
| this.$refs.audio.volume() | 获取或设置音频的音量,设置时的值范围是:0~1 |
| this.$refs.audio.seek(seconds) | 跳到指定时间开始播放,单位:秒 |
| this.$refs.audio.currentSrc() | 获取当前播放的音频url |
| this.$refs.audio.duration() | 获取当前音频的时长,单位:秒 |
| this.$refs.audio.currentTime | 获取当前播放的时间,单位:秒 |
| this.$refs.audio.audioReady | 获取当前音频是否已ready |
| this.$refs.audio.isPlaying | 获取当前音频是否正在播放 |
FAQs
A audio player vue component based on html5
We found that v-audio-player demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.