gpt4 book ai didi

css - IE11 无法识别@media 查询中的视口(viewport)单位

转载 作者:行者123 更新时间:2023-12-01 19:29:19 24 4
gpt4 key购买 nike

在 css 中执行缩放代码(因为它不依赖于那里的 javascript),因此宽度/高度比在所有尺寸下都保持相同。对于所有当前支持的浏览器,它都可以工作,但 IE11 似乎完全忽略了媒体查询 - 有没有人找到让它工作的方法?

使用 scss 以简化编码 -

$width: 512;
$height: 350;

@mixin aspect-ratio() {
$widthRatio: $width / $height;
$heightRatio: $height / $width;

$widthHeight: #{$widthRatio * 100}vh;
$heightWidth: #{$heightRatio * 100}vw;

/* Fix the width relative to the height */
@media all and (min-width: $widthHeight) {
max-width: $widthHeight;
}

/* Fix the height relative to the width */
@media all and (min-height: $heightWidth) {
max-height: $heightWidth;
}
}

body {
@include aspect-ratio();
}

哪些输出-

@media all and (min-width: 146.28571vh) {
body {
max-width: 146.28571vh;
}
}
@media all and (min-height: 68.35938vw) {
body {
max-height: 68.35938vw;
}
}

编辑:正如在下面的评论中指出的那样,我不需要为此进行媒体查询,但是我还有另外两件事似乎确实需要它——字体缩放需要基于高度,除非这会在下面放置空白当它需要变得基于宽度时,主体会出现,并且有“假”页脚,它们得到 position:fixedtop 添加到它们以保持它们在正确的位置。 ..

@mixin footer-aspect-ratio() {
$footerHeightRatio: $height / $width;

$footerHeightWidth: #{$footerHeightRatio * 100}vw;

$footerHeightPx: #{$height}px;

top: calc(100vh - 3rem);

$footerTopMin: calc(#{$footerHeightWidth} - 3rem);

/* Fix the height relative to the width */
@media all and (min-height: $footerHeightWidth) {
top: $footerTopMin;
}

/* Make sure the font can never get too short */
@media all and (max-height: #{$height}px), all and (max-width: #{$width}px) {
bottom: 0;
}
}

@mixin font-scaling($font-vh: 4.5) {
$widthRatio: $width / $height;
$heightRatio: $height / $width;

$widthHeight: #{$widthRatio * 100}vh;
$heightWidth: #{$heightRatio * 100}vw;

$fontsizeWidthHeight: #{$font-vh}vh;
$fontsizeHeightWidth: calc(#{$heightRatio} * #{$font-vh}vw);
$fontsizeMin: #{$font-vh * $height / 100}px;

/* Fix the width relative to the height */
font-size: $fontsizeWidthHeight;

/* Fix the height relative to the width */
@media all and (min-height: $heightWidth) {
font-size: $fontsizeHeightWidth;
}

/* Make sure the font can never get too short */
@media all and (max-height: #{$height}px), all and (max-width: #{$width}px) {
font-size: $fontsizeMin;
}
}

最佳答案

一种解决方案是不使用最小宽度和最小高度,而是使用最小纵横比和最大纵横比。参见 MDN .

html {background:white; height:100%}
body {background:yellow; height:calc(100% - 16px)}

@media all and (min-aspect-ratio: 512/350) {
body {
max-width: 146.28571vh;
}
}
@media all and (max-aspect-ratio: 512/350) {
body {
max-height: 68.35938vw;
}
}
  This is a test. Again.

适用于 IE9 及更高版本。

我不确定您问题中的混入应该如何工作,但我希望这个示例能让您入门。

关于css - IE11 无法识别@media 查询中的视口(viewport)单位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38377320/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com