Some pages are too small and hard to read in WebBrowser control, is zooming possible?
相关问题
- An error is occur when we use navigation to move o
- binding font-awesome character in XAML to Text
- Windows Phone 7 call ASMX web service
- Can windows phone 7 microphone detect frequencies
- Selenium newer Chrome cannot disable browser notif
相关文章
- Working with hmacsha256 in windows store app
- WP7 Alert dialog
- Add Service Reference and Add Web Reference?
- Is there a way to specify minimum and maximum zoom
- Scrollviewer & SIP Issue (WP7.5 Mango)
- Why do mobile browsers load my page completely zoo
- Prevent zooming out in leaflet R-Map?
- Database for Windows Phone 7 [closed]
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.
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 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.