作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了一个问题,经过多次谷歌搜索后我还没有找到答案。我有一个带有静态谷歌地图(大小 400x300)的基本网站,我使该网站响应 600 像素的媒体查询。
<p>
<img id="karte" alt="Geolocation" src="http://maps.google.com/maps/api/staticmap?&size=400x300&sensor=false&maptype=roadmap&markers=color:green|label:B|Stuttgart&markers=color:green|label:A|Hamburg">
</p>
fiddle 在这里:https://jsfiddle.net/bLahadgu/
当我将屏幕缩小到 600 像素时,图像之外的所有内容都会变得流畅,但图像只会在 400 像素或更低时变得流畅。如果我删除 size=400x300&
该图像根本没有出现。我检查了 CSS 代码,似乎没问题。
对于正常的屏幕尺寸
img, #karte{
width:400px;
height:300px;
}
对于小屏幕(在媒体查询内):
img, #karte{
max-width: 100% !important;
height: auto;
float: none;
margin: 0;
}
还确保支架、内容等也适应较小的屏幕:
@media all and (max-width: 600px){
header, #content, #holder, section, nav, article, footer, .callout{
clear: both;
display: block;
width: 100% ! important;
float: none;
margin: 0;
padding: 0;
}
}
我以为可能是 <p>
但在 600px 时一切都变得流畅,而不是图像。我的 CSS 代码中是否缺少某些内容,或者静态图像的行为方式?
最佳答案
在#karte 上使用width:100%
参见jsfiddle
当你使用
img,#karte {
max-width:100%!important;
}
#karte max-width
是第一个设置的宽度,也就是400px
,所以不会拉伸(stretch)超过400px;
所以在下面使用这个 css(用于媒体查询)
img,
#karte {
max-width: 100% !important;
height: auto;
float: none;
margin: 0;
}
#karte {
width: 100% !important;
max-width:none!important;
}
你应该为图像保留 max-width:100%
这样它们就不会拉伸(stretch)并且看起来很别扭,然后为 map 覆盖它
关于jquery - 静态谷歌地图图像不会随着媒体查询而变得流畅,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43225644/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!