Skip to content

Instantly share code, notes, and snippets.

@oklai
Created April 19, 2013 07:48
Show Gist options
  • Save oklai/5418785 to your computer and use it in GitHub Desktop.
Save oklai/5418785 to your computer and use it in GitHub Desktop.
移动设备下screen.width测试
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"/>
<script type="text/javascript">
alert(screen.width);
</script>
</head>
<body>
</body>
</html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"/>
</head>
<body>
<script type="text/javascript">
alert(screen.width);
</script>
......................
这里放很多内容试试
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment