0

Trying to use video tag in ionic framework. All thinks are working fine but not able to how can i remove the default play button.

Video default play button

Note: This play button is only visible in android app not on iOS.

1 Answers1

0

Have you tried to use the poster property?

<video width="470" height="255" poster="placeholder.png" controls></video>
Juan Picado
  • 1,823
  • 18
  • 33
  • Already tried! It will add poster but not able to remove the default poster. The default poster will be there until the custom poster is properly loaded. – Gourav Arora Dec 05 '16 at 14:20
  • Maybe this helps http://stackoverflow.com/questions/15508421/how-to-fill-video-element-with-poster-image-even-if-the-poster-image-is-a-differ – Juan Picado Dec 05 '16 at 15:31
  • Also, I asume you are using Android stock browser. Don't you? – Juan Picado Dec 05 '16 at 16:57
  • I have the same problem. Did anybody solve this with pure HTML/CSS? Setting a poster won't work. – waldgeist Mar 23 '21 at 09:06