ASP.Net根据页面内容智能缩放页面
与 iPhone Safari 浏览器或 Firefox(Ctrl + 滚动)一样,我需要智能缩放,其中不仅要根据屏幕的可视区域缩放 Div,还要缩放字体大小和图像。
我需要在 ASP.Net 中实现这个。有什么建议吗?
问候 丹增
Like iPhone Safari Browser or Firefox (Ctrl + Scrolling), I need intelligent scaling where not only Divs but also font-size and images are scaled based on the viewable area of the screen.
I need to implement this in ASP.Net. Any suggestion?
Regards
Thant Zin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是服务器端的事情,而是表示层的事情。您需要考虑在 CSS 中使用相对测量大小来应用适当的缩放。即,使用百分比或 em,而不是像素。
您可以在服务器端做的一件事是浏览器嗅探。找出您的用户正在使用的用户代理,然后将其推送到您的页面,以便您可以在适当的情况下应用适当的样式表。
It's not a server side thing, its a presentation layer thing. You need to look at using relative measurement sizes in CSS for applying the appropriate scaling. i.e, using percentages or ems, instead of pixels.
One thing you can do on the server side is browser-sniffing. Find out what user agent your user is using, and then push that down with your page so you can apply the appropriate stylesheet where appropriate.