Relative Content

Tag Archive for html5-videoreact-videovidstack-player

Hiding specific video controls in html video element

<MediaPlayer playsInline={isMobile ? true : false} onTimeUpdate={videoTimeUpdate} className={ isMobile ? “d-block d-md-none quizVideo” : “d-none d-md-block quizVideo” } controls={true} autoPlay={playing} ref={videoRef} src={ isMobile ? videosMobile[currentVideo] : videos[currentVideo] } > <MediaProvider /> </MediaPlayer> The above is the video element for a video and below is the css to hide certain controls in my video component. .quizVideo […]