Achievement effect:
Implementation steps:
1. Install npm:
npm install aplayer --save
Yarn:
yarn add aplayer
2. Introduce
import APlayer from 'APlayer'; import 'APlayer/dist/APlayer.min.css';
3 into the page. Specific usage, source code
(1) Encapsulate aPlayer.vue
<template> <div class="mainPage" ref="playerRef"></div> </template> <script setup> import APlayer from 'APlayer'; import 'APlayer/dist/APlayer.min.css'; import {reactive,nextTick, onBeforeUnmount,getCurrentInstance, onMounted, ref} from 'vue' const playerRef = ref() const { proxy } = getCurrentInstance() const state = reactive({ instance:null }) // APlayer歌曲信息 class Audio { // 音频艺术家 // artist: String; // 音频名称 // name: String; // 音频链接 // url: String; // 音频封面 // cover: String; // 歌词 // lrc: String; constructor(artist, name, url, cover, lrc) { this.artist = artist; this.name = name; this.url = url; this.cover = cover; this.lrc = lrc; } } const props = defineProps({ // 开启吸底模式 fixed: { type: Boolean, default: false }, // 开启迷你模式 mini: { type: Boolean, default: false }, // 音频自动播放 autoplay: { type: Boolean, default: false }, // 主题色 theme: { type: String, default: 'rgba(255,255,255,0.2)' }, // 音频循环播放 loop: { type: String, default: 'all' //'all' | 'one' | 'none' }, // 音频循环顺序 order: { type: String, default: 'random' //'list' | 'random' }, // 预加载 preload: { type: String, default: 'auto' //'auto' | 'metadata' | 'none' }, // 默认音量 volume: { type: Number, default: 0.7, validator: (value) => { return value >= 0 && value <= 1; } }, // 歌曲服务器(netease-网易云, tencent-qq音乐, kugou-酷狗, xiami-小米音乐, baidu-百度音乐) songServer: { type: String, default: 'netease' //'netease' | 'tencent' | 'kugou' | 'xiami' | 'baidu' }, // 播放类型(song-歌曲, playlist-播放列表, album-专辑, search-搜索, artist-艺术家) songType: { type: String, default: 'playlist' }, // 歌的id songId: { type: String, default: '19723756' }, // 互斥,阻止多个播放器同时播放,当前播放器播放时暂停其他播放器 mutex: { type: Boolean, default: true }, // 传递歌词方式 lrcType: { type: Number, default: 3 }, // 列表是否默认折叠 listFolded: { type: Boolean, default: true }, // 列表最大高度 listMaxHeight: { type: String, default: '100px' }, // 存储播放器设置的 localStorage key storageName: { type: String, default: 'aplayer-setting' } }) onMounted(() => { let str = { server:props.songServer, type:props.songType, id:props.songId } proxy.$api.common.getSongSheet(str).then(res=>{ let audioList = res.data.map(value => new Audio(value.author, value.title, value.url, value.pic, value.lrc)); state.instance = new APlayer({ container: playerRef.value, fixed: props.fixed, mini: props.mini, autoplay: props.autoplay, theme: props.theme, loop: props.loop, order: props.order, preload: props.preload, volume: props.volume, mutex: props.mutex, lrcType: props.lrcType, listFolded: props.listFolded, listMaxHeight: props.listMaxHeight, storageName: props.storageName, audio: audioList }) }) // 销毁 onBeforeUnmount(() => { state.instance.destroy() }) }) </script> <style lang='scss' scoped> .mainPage{ @include wh(100%,auto); background: #FCFCFC; border: 1px solid #E0E0E0; border-radius: 4px; } </style>
(2) Parent component call
<a-player></a-player>
The above is the detailed content of How to implement audio player APlayer in vue3. For more information, please follow other related articles on the PHP Chinese website!

前端有没有现成的库,可以直接用来绘制 Flowable 流程图的?下面本篇文章就跟小伙伴们介绍一下这两个可以绘制 Flowable 流程图的前端库。

vue不是前端css框架,而是前端JavaScript框架。Vue是一套用于构建用户界面的渐进式JS框架,是基于MVVM设计模式的前端框架,且专注于View层。Vue.js的优点:1、体积小;2、基于虚拟DOM,有更高的运行效率;3、双向数据绑定,让开发者不用再去操作DOM对象,把更多的精力投入到业务逻辑上;4、生态丰富、学习成本低。

Vue3如何更好地使用qrcodejs生成二维码并添加文字描述?下面本篇文章给大家介绍一下Vue3+qrcodejs生成二维码并添加文字描述,希望对大家有所帮助。

本篇文章我们来了解 Vue2.X 响应式原理,然后我们来实现一个 vue 响应式原理(写的内容简单)实现步骤和注释写的很清晰,大家有兴趣可以耐心观看,希望对大家有所帮助!


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
