我有一个网络浏览器。我加载了一个只有图片的网址。图片比网络浏览器大。如何调整图片大小以适应网络浏览器,以便用户不再需要放大和缩小?
问问题
1049 次
1 回答
0
尝试这个
string html = String.Format("<html><head></head><body><img style='width:100%' src='{0}'/></body></html>", "http://www.userlogos.org/files/logos/pek/stackoverflow2.png");
webBrowser.NavigateToString(html);
您可以使用“样式”属性为图像添加更多样式。
以下元标记可能对您也很有趣。
< meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" />
于 2012-10-14T09:22:08.123 回答