From 078e88fd4596c24abea309571dba99aca4e5601e Mon Sep 17 00:00:00 2001 From: Christos Gourzoulidis <43541346+gourzou@users.noreply.github.com> Date: Sun, 17 Mar 2019 13:18:04 +0200 Subject: [PATCH] YouTube Loop (#32950) Adding youtube loop values --- .../embedding-youtube-videos/index.md | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/guide/english/html/tutorials/embedding-youtube-videos/index.md b/guide/english/html/tutorials/embedding-youtube-videos/index.md index 89067f4f9b..47a2abac45 100644 --- a/guide/english/html/tutorials/embedding-youtube-videos/index.md +++ b/guide/english/html/tutorials/embedding-youtube-videos/index.md @@ -21,4 +21,22 @@ src="https://www.youtube.com/embed/v8kFT4I31es"> ``` -Inserted values are recommended, and feel free to change them however you like. +#### Autoplay +What should we do if we would like to make this player starting automatically playing? Just add to your link value `?autoplay=1`. But be careful, because it can be annoying for a lot of people visiting your webpage. + +```html + +``` + +## YouTube Loop + +Value 0 (default): The video will play only once.
+Value 1: The video will loop (forever). + +``` + +```