html - How to loop an embeded YouTube video? -
i embedding youtube video without playback controls, or video title, want autoplay , loop. works except loop. doing wrong?
<div class='embed-container'><iframe src="https://www.youtube.com/embed/yo19zho7cac?autoplay=1&loop=1&cc_load_policy=1rel=0&controls=0&showinfo=0" frameborder="0" allowfullscreen></iframe></div>
you shoud add playlist=video_id @ src
<div class='embed-container'> <iframe src="https://www.youtube.com/embed/yo19zho7cac?autoplay=1&loop=1&cc_load_policy=1rel=0&controls=0&showinfo=0&playlist=yo19zho7cac" frameborder="0" allowfullscreen></iframe> </div>
Comments
Post a Comment