だから、私はどんなスクリーンサイズでもクロップせずに可能な限り大きな画像を表示しようとしています。これの意味は height: 100%; width: auto
in landscape
およびwidth: 100%; height: auto
in portrait
。
Retina iPadを埋めるのに十分な大きさの画像を提供しているので、ほとんどすべての画面サイズで画像が縮小されます。ランドスケープモードのInternet ExplorerとFirefoxを除くすべてのブラウザーと向きでこれをうまく行い、ほとんどすべての画面に対して大きすぎます。これは横向きだけです。
関連するコードのビットは次のとおりです。
<style type="text/css">
#container {position:absolute; top:0; left: 0; right: 0; bottom:0; display: block;}
#content {
text-align: center;
margin: 0px;
font-size:0;
position: absolute;
top:0; left: 0; right: 0; bottom: 0
}
#content:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -0.25em;
}
.sponsor {
display: inline-block;
vertical-align: middle;
}
#content img {
max-width: 100%;
width: 100%;
height:auto;
}
@media all and (orientation: landscape) {
#main {
top:0;
display: block;
width: 100%;
height: 100%;
margin:0px auto;
text-align:center;
}
#content img {
height:100%;
width:auto;
max-width:auto !important;
max-height:100%;
display:block;
margin:0 auto;
}
}
</style>
<div id="content">
<?php if (has_post_thumbnail( $post->ID ) ): ?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?>
<div title="Click to flip" class="sponsor">
<a href="#" class="img-link">
<img src="<?php echo $image[0]; ?>" alt="" class="feat-1" style="display: block;" />
</a>
<a href="#">
<img src="<?php echo kd_mfi_get_featured_image_url('featured-image-2', 'post', 'full'); ?>" alt="" class="feat-2" style="display: none;" />
</a>
</div><?php endif; ?>
</div><!-- End div #content -->
私はIE9よりも古いことについてはあまり気にしませんが、理想的にはすべてを提供したいと思います。しかし、IE9 +とFirefoxを提供できる限り、私は満足します。
ああ、ところで-Firefoxのインスペクターはwidth:100%
ルールが守られていますが、明らかに守られていません。
事前に感謝します!
あなたが持っている max-width: 100%
、しかし何の100%?親の幅のですか?ただし、親はインラインブロック(class = "sponsor")であり、その幅は設定されていないため、その幅は子、特に子の優先幅に依存します。
このスタイルのレイアウトは、CSS仕様では定義されていません。特に、この場合の子供の本質的な幅は親の幅に依存し、親の幅は子供の本質的な幅に依存します。関連する仕様テキストについては http://www.w3.org/TR/CSS21/visudet.html#shrink-to-fit-float を参照し、すべての「定義しない」ビットに注意してください。
<div class="sponsor">
幅。それは問題に対処する必要があると思います。
私の修正は2つありました。他の提案がなかったときに機能しました。 FFのみのターゲティングを使用し、古いwidth: 100%
修正、および追加の実験的プロパティ。
動作させるために、次のことを行いました。
@-moz-document url-prefix() {
/* Firefox doesn't respect max-width in certain situations */
img { width: 100%; max-width: -moz-max-content; }
}
魔法の弾丸は実験的な-moz-max-content
値。と組み合わせ width: 100%
、FFがSafari/Chromeのmax-width: 100%;
セットアップ。
私はこれを次のソースから見つけました: