LoginSignup
3
4

More than 3 years have passed since last update.

hamlのyoutube埋め込みコード書き方

Last updated at Posted at 2019-11-20

こんな感じで書くそうですよ。

test.haml
.youtube-container
  %iframe#player{frameborder: "0", height:"390", src: "https://www.youtube.com/embed/6XDjA9d_05M", type: "text/html", width: "640"}

おまけ

youtube idの後ろに下記のパラメータをつけるなどで、再生を制御できるそう。

https://www.youtube.com/embed/6XDjA9d_05M?start=412
 =>開始タイミングを秒で指定(ここでは412秒目から再生が開始する)

https://www.youtube.com/embed/6XDjA9d_05M?end=504
 =>終了タイミングを秒で指定(ここでは504秒目に再生が終了する)

https://www.youtube.com/embed/6XDjA9d_05M?start=412&end=504
 =>複数パラメータは&で繋げる

参考記事

Railsでyoutubeの動画を埋め込む
https://teratail.com/questions/5082

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4