문제

Is there a way to hide the default play button in ios/android mobile devices for HTML video?

I am using video.js with the following html

<video id="battery_video" class="video-js vjs-default-skin vjs-big-play-centered"
          controls preload="auto" width="720" height="480"
          poster="/videoLibrary/data/thumbnails/Battery.jpg"
          data-setup='{"example_option":true}'>
         <source src="/videoLibrary/data/video/Battery.mp4" type='video/mp4' />
        </video>

Things look like I want on the desktop browsers but ios/android are dropping a play button in.

enter image description here

도움이 되었습니까?

해결책

At this time it doesn't look like there's a way to hide the play button.

다른 팁

videoplayer.bigPlayButton.hide();

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top