Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML5 Video Playback - image preload

I am using video tags and jQuery to display a HTML5 video playback.

How can I show an image while the video is still loading for displaying?

I would use jQuery for this..

Thanks in advance!

PD: Display an image when the video preloads.

like image 274
David Avatar asked Oct 16 '25 10:10

David


1 Answers

There is no need for JQuery to achieve this as the html5 video tag comes with its own poster attribute. You can use that to specify what image should be displayed while the video loads. For instance if you have an image called myImage.jpg you can do the following: <video controls="controls" poster="myImage.jpg">. Refer here for more info:

https://www.w3.org/wiki/HTML/Elements/video#HTML_Attributes

like image 155
Paul Graffam Avatar answered Oct 19 '25 02:10

Paul Graffam



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!