Back
Theme:

Add background image before start the video


How to add background image before start the video

Date: Wednesday, February 8, 2023
2 answers | 261 view(s)
by Mauricio Junior

Answers

Try to use

<video controls **poster="path/image.png"**>
	<source src="path/video.mp4">
</video>

Wednesday, February 8, 2023

Mauricio Junior


Code

<video controls poster="path/image.png">
	<source src="path/video.mp4">
</video>

Wednesday, February 8, 2023

Mauricio Junior


25