Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有几个 html 文件可以引导用户浏览我们的应用程序并向他介绍新功能。它是适用于 iPhone 和 iPad 的通用应用程序。如果用户选择 iPhone 版本的帮助部分,我想向他展示为 iPhone 设备缩放的图像。
但现在有我的问题。在 CSS 文件中,所有图像只有一个类 boximage。它是如何决定加载哪个图像的?我应该把每张图片都放在自己的班级里吗?
在此先感谢您的四个想法!
问候, 布克
你可以试试这个。
<style type="text/css"> @media all and (max-width: 800px) { .boximage{ background:url(image_name1.jpg)} } @media all and (min-width: 800px){ .boximage{ background:url(image_name2.jpg)} }</style>
或使用 javascript 查找用户代理并从脚本设置图像。