我有一个带有很多超链接的小html页面,当我查看同一页面是一台看起来不错的计算机上的网页浏览器时,当我在iphone中查看html页面时,这些字母非常小而且非常小。很难读。
如果您在iphone& amp;中查看,如何使相同的HTML看起来自动调整大小计算机中的网络浏览器?
感谢。
答案 0 :(得分:0)
你必须制作移动广告。
使用Mobile Device Detect php代码:
require_once('mobile_device_detect/mobile_device_detect.php');
$mobile = mobile_device_detect(true,false,true,true,true,true,true,false,false);
echo ($mobile) ? '<link rel="stylesheet" media="all" href="css/mobile.css" /><meta content="True" name="HandheldFriendly" /><meta content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" name="viewport" />' : '<link rel="stylesheet" media="all" href="css/main.css" />';
echo '<body'.($mobile ? 'onload="window.scrollTo(0, 1)"' : null).'>' ;