LoginSignup
15
15

More than 5 years have passed since last update.

Video要素の縦横比を変更する

Last updated at Posted at 2016-10-23

検証環境

Chrome 54.0.2840.59

問題点

Video要素のwidth, heightを変更しても要素の縦横比がキープされた状態で大きさが変更されてしまうため、Video要素は縦横比を変えることが出来ない。グーグル先生は解決方法を教えてくれない(と、ある勉強会で聞いた)

原因

Video要素のobject-fitがデフォルトでcontainになっている。
※Image要素とかは、fill

解決方法

object-fit: fillを指定する。

video {
    object-fit: fill;
    width: 75%;
}

解決方法2

transformでも一応大丈夫そう

video {
    transform: scale(0.75, 1);
}

グーグル先生向け

アスペクト比 変わらない width height

15
15
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
15
15