3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Gatsbyで動画自動再生に手こずった(mp4)

Last updated at Posted at 2021-04-09

##サイトによくあるトップページの動画自動再生・・・

なかなか動かなくて調べました。

JSXとの兼ね合いで良い記事が見つからず、あれこれ試したが、
<vide src="/images/~~~~~~~.mp4"></video>では動かなかった。

<video autoPlay loop muted playsInline controls style={{ width:"100%" }}>
  <source src="/images/~~~~~~~.mp4" />
</video>

<source>タグを作って内側に書くという方法。

レスポンシブにするかは**style={{ width:"100%" }}**の部分をつけるか外すか。

※ここのHTMLなどをJSX記法に変換してくれるオンラインツール便利すぎた!!!
HTML to JSX Compiler

3
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?