开发者

how to loop a video in html

开发者 https://www.devze.com 2023-03-23 06:33 出处:网络
how do i loop a video in html using this code, can someone tell me what i need to add to make it loop <embed src=\"man.mov\" width=开发者_JS百科\"320\" height=\"320\"> </embed>

how do i loop a video in html

using this code, can someone tell me what i need to add to make it loop

<embed src="man.mov" width=开发者_JS百科"320" height="320"> </embed>


Loop attribute needs to be set to true. And attribute values have to be put into "".

<embed src="man.mov" width="320" height="320" loop="true"> </embed>


< SRC="../graphics/sounds/helloo.wav" LOOP=TRUE HEIGHT=60 WIDTH=144>


try HTML5 video tag it will provide you all facilities you can easily handle all operation on you video player


You can use following to loop the video.

<embed src="man.mov" width="320" height="320" loop=true> </embed>

It is simple property loop, default is false.


You can loop youtube videos by adding &loop=1 to the end of the src url.

0

精彩评论

暂无评论...
验证码 换一张
取 消