리액트 뮤직 플레이어
4696 단어 reactreaplaytypescriptplayer
give me your tracks list, and i'll give you must state, functionalities you need for create a music player
설치
npm install --save reaplay
yarn add reaplay
용법
import React from 'react'
import {Reaplay} from 'reaplay'
export default function App() {
const songList = [
"songSrc", // url song (https://example.com/song.mp3)
"songSrc", // url song
require("./songSrc"), //local song,
]
return (
// optional ↓
<Reaplay tracks={songList} startIndex={2}>
{(player) => {
console.log("loading :", player.isLoading)
return (
// your player
)
}}
</Reaplay>
)
}
"tracks" prop is required but "startIndex" is optional prop
플레이어의 일부 상태(예시)
player.isLoading
player.duration
player.trackProgress
player.volume
player.isRepeat
및 more 동적으로 플레이어 UI를 생성하기 위한 상태플레이어의 일부 기능(예시)
player.toNextTrack()
player.toPrevTrack()
player.setVolume(70)
player.setIsRepeat(true) | player.setIsRepeat((isRepeat) => !isRepeat)
player.playFast()
및 more 자신의 플레이어 이벤트에 사용할 수 있는 기능예시
this 복제하거나 codesandbox에서 약간의 예를 사용할 수 있습니다.
저를 지원하려면 Github에서 별 버튼을 클릭하고 이 게시물을 공유하고 마지막으로 Repo를 친구들에게 보내주세요.
Github 리포지토리:
https://github.com/Amir-Alipour/reaplay
Reference
이 문제에 관하여(리액트 뮤직 플레이어), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/amir_alipour/react-music-player-4621텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)