1

I would like to modify only the content of reactplayer. That is, the play button, the music track or the background color. I use for that the react-player module. Thanks and have a nice day.

// My app

        <div className="player-wrapper" >
                    <ReactPlayer url="https://soundcloud.com/supperclubmix/black-eye-peas-dirty-bit-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing"
                        className="react-player"
                        id="music"
                        height="auto"
                        width="90%"
                        controls={true}
                        loop={true}
                    />
                </div>

      </div>

//CSS

.player-wrapper {
    
}


.react-player {
    margin-top: 115%;
    margin-left: auto;
    margin-right: auto;
}

enter image description here

LAYAN_Jason
  • 57
  • 2
  • 7
  • Try looking at the docs. If no doc present, then it will be easier to create your own video player component then trying to figure out how to modify the pre-built installed one. – innocent Jun 27 '22 at 12:51

0 Answers0