Hi All,
can someone help me identify what I have wrong in code below? I’ve added video on webpage with controls, but I’m unable to autoplay or loop using Google Chrome.
video {
width: 400px;
}
Hi All,
can someone help me identify what I have wrong in code below? I’ve added video on webpage with controls, but I’m unable to autoplay or loop using Google Chrome.
video {
width: 400px;
}
Hey there, Here is an example that worked for me.
<video
autoplay="autoplay"
loop="loop"
controls="controls"
muted=""
width="640"
height="360"
>
<source
src="http://distribution.bbb3d.renderfarming.net/video/mp4/bbb_sunflower_1080p_30fps_normal.mp4"
type="video/mp4"
/>
</video>
Hey there, it worked, thank you very much !