如何指定图像大小,使其在 iPhone 和 Android 浏览器上缩放至 100% 宽度?

发布于 2024-10-15 11:00:49 字数 299 浏览 2 评论 0原文

我正在开发我的第一个移动网站。设计非常简单——几乎没有图形。有一个页面允许用户通过邮政编码搜索退休社区。搜索结果页面只是找到的社区列表,以及用于打开每个社区页面的链接。

所有作品文件,除了...客户现在希望在该社区的特定页面上展示每个社区的图像。无论用户是以纵向还是横向模式查看,图像都需要跨越屏幕的整个宽度,并且它需要在 iPhone 和 Android 浏览器上以相同的方式工作。

如何指定图像大小才能以这种方式工作?

编辑添加:我已经有一个视口标签,但尽管它正确设置了文本和 HTML/css 元素的大小,但它对图像没有任何影响。

I'm developing my first mobile site. The design is pretty simple - almost no graphics. There's a page that allows users to search for retirement communities by zip code. The search results page is just a list of communities found, with links to open an individual community page for each.

All works file, EXCEPT... the client now wants to feature an image of each community on the specific page for that community. The image needs to span the entire width of the screen, regardless of whether the user is viewing in portrait or landscape mode, and it needs to work the same way on both iPhone and android browsers.

How do I specify image size so that it works this way?

Edited to add: I do have a viewport tag already, but although it's correctly setting the size of text and HTML/css elements, it's not having any effect on the images.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

絕版丫頭 2024-10-22 11:00:49
      <img src="source" width="100%" />

     <img src="source" style="width:100%" />

 <style>
  .full
  {
  width: 100%;
  }
  </style>
 <img src="source" class="full" />

应该做这项工作;

      <img src="source" width="100%" />

or

     <img src="source" style="width:100%" />

or

 <style>
  .full
  {
  width: 100%;
  }
  </style>
 <img src="source" class="full" />

should do the job;

烙印 2024-10-22 11:00:49

尝试使用

.img {
    max-width: 100%;
}

Try using

.img {
    max-width: 100%;
}
遇到 2024-10-22 11:00:49

试试这个;它似乎适用于 iPhone 和黑莓——但对 Android 来说不太好——通过在 body 标签上添加宽度和高度来调整图像的大小。然后,移动浏览器将放大图像尺寸。

Try this; It seems to work for iPhone and Blackberry – not great for android though – by adding a width and height on the body tag to the size of the image. The mobile browsers will then zoom in to the image size.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文