如何指定图像大小,使其在 iPhone 和 Android 浏览器上缩放至 100% 宽度?
我正在开发我的第一个移动网站。设计非常简单——几乎没有图形。有一个页面允许用户通过邮政编码搜索退休社区。搜索结果页面只是找到的社区列表,以及用于打开每个社区页面的链接。
所有作品文件,除了...客户现在希望在该社区的特定页面上展示每个社区的图像。无论用户是以纵向还是横向模式查看,图像都需要跨越屏幕的整个宽度,并且它需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或
或
应该做这项工作;
or
or
should do the job;
尝试使用
Try using
试试这个;它似乎适用于 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.