web-dev-qa-db-ja.com

アスペクト比を保ったままdivサイズを変更する

画像にパーセント幅または高さのみを与えると、縦横比を保ったまま拡大/縮小されますが、別の要素で同じ効果を得たい場合は、パーセントを使用して幅と高さを結び付けることはまったく可能ですか。

211
ilyo

純粋なCSSを使ってこれを行うことができます。 JavaScriptは必要ありません。これは、 padding-topパーセンテージが包含ブロックの に相対的であるという(やや直観に反する)事実を利用します。これが例です:

.wrapper {
  width: 50%;
  /* whatever width you want */
  display: inline-block;
  position: relative;
}
.wrapper:after {
  padding-top: 56.25%;
  /* 16:9 ratio */
  display: block;
  content: '';
}
.main {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  /* fill parent */
  background-color: deepskyblue;
  /* let's see it! */
  color: white;
}
<div class="wrapper">
  <div class="main">
    This is your div with the specified aspect ratio.
  </div>
</div>
524
Chris

Chrisの考えをかき立てるもう一つの選択肢は、疑似要素を使うことです。そうすれば、絶対位置の内部要素を使う必要はありません。

<style>
.square {
    /* width within the parent.
       can be any percentage. */
    width: 100%;
}
.square:before {
    content: "";
    float: left;

    /* essentially the aspect ratio. 100% means the
       div will remain 100% as tall as it is wide, or
       square in other words.  */
    padding-bottom: 100%;
}
/* this is a clearfix. you can use whatever
   clearfix you usually use, add
   overflow:hidden to the parent element,
   or simply float the parent container. */
.square:after {
    content: "";
    display: table;
    clear: both;
}
</style>
<div class="square">
  <h1>Square</h1>
  <p>This div will maintain its aspect ratio.</p>
</div>

ここでデモをまとめました。 http://codepen.io/tcmulder/pen/iqnDr


編集:

さて、Isaacの考えからだめになって、現代のブラウザではアスペクト比を強制するために単にvw単位を使うほうが簡単です(私がそうであるようにvhも使いません、あるいはアスペクト比はウィンドウの高さによって変わります)。

だから、これは物事を簡素化します。

<style>
.square {
    /* width within the parent (could use vw instead of course) */
    width: 50%;
    /* set aspect ratio */
    height: 50vw;
}
</style>
<div class="square">
  <h1>Square</h1>
  <p>This div will maintain its aspect ratio.</p>
</div>

修正デモをここにまとめました: https://codepen.io/tcmulder/pen/MdojRG?editors=1100

これはブラウザの幅に基づいており、コンテナには依存しないため、max-height、max-width、min-height、min-widthのいずれか、またはそれ以上の大きさにしたくない場合は設定できます。無限に成長/縮小します。

フォントサイズをvw測定に設定し、すべての内部設定をem測定に設定した場合は、要素内のコンテンツを拡大縮小することもできます。そのためのデモは次のとおりです。 https:// codepen。 io/tcmulder/pen/VBJqLV?editors = 1100

44
Tomas Mulder
<style>
#aspectRatio
{
  position:fixed;
  left:0px;
  top:0px;
  width:60vw;
  height:40vw;
  border:1px solid;
  font-size:10vw;
}
</style>
<body>
<div id="aspectRatio">Aspect Ratio?</div>
</body>

ここで注意すべき重要なことはvw =ビューポート幅、そしてvh =ビューポート高さ

29
Isaac

それが私の解決策です

<div class="main" style="width: 100%;">
    <div class="container">
        <div class="sizing"></div>
        <div class="content"></div>
    </div>
</div>

.main {
    width: 100%;
}
.container {
    width: 30%;
    float: right;
    position: relative;
}
.sizing {
    width: 100%;
    padding-bottom: 50%;
    visibility: hidden;
}
.content {
    width: 100%;
    height: 100%;
    background-color: red;
    position: absolute;
    margin-top: -50%;
}

http://jsfiddle.net/aG4Fs/3/

3
Mykyta Shyrin
(function( $ ) {
  $.fn.keepRatio = function(which) {
      var $this = $(this);
      var w = $this.width();
      var h = $this.height();
      var ratio = w/h;
      $(window).resize(function() {
          switch(which) {
              case 'width':
                  var nh = $this.width() / ratio;
                  $this.css('height', nh + 'px');
                  break;
              case 'height':
                  var nw = $this.height() * ratio;
                  $this.css('width', nw + 'px');
                  break;
          }
      });

  }
})( jQuery );      

$(document).ready(function(){
    $('#foo').keepRatio('width');
});

実用例: http://jsfiddle.net/QtftX/1/

2
Peter