WP7 Web浏览器控制缩放
有些页面太小,在 WebBrowser 控件中难以阅读,是否可以缩放?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有些页面太小,在 WebBrowser 控件中难以阅读,是否可以缩放?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
如果您可以控制 html,则可以设置视口的
initial-scale
。更多背景在这里。Windows Phone 7 上的 IE 移动视口
If you have control of the html you can set the
initial-scale
of the viewport. More background here.The IE Mobile Viewport on Windows Phone 7
我采用了以下技巧:
I went with the following hack:
是的,假设您没有阻止用户缩放,您可以点击进行缩放或使用收缩/拉伸,就像在完整浏览器中一样。
Yes, assuming that you haven't prevented user scaling, you can tap to zoom or use pinching/stretching in the same way you can in the full browser.
我设置了 CSS3 缩放 -transform - 请求页面的主体属性,因为我真的知道布局并且它可能不会很快改变。
我通过 jQuery 解决了这个问题,因为我发现它方式更方便。我也可以通过纯 JavaScript 来完成,因为这里不考虑目标浏览器。
I went with setting a CSS3 scale-function on the transform-property of the body for the requested page, as I really know the layout and that it probably won't change anytime soon.
I solved it via jQuery as I find it way more convenient. I could have done it via plain javascript as well, as the targeted browser is not in question here.