移动端网页宽度值(未加meta viewport标签):

iphone:980px

Galaxy(盖乐世):980px

Nexus:980px

blackberry(黑莓):980px

LG:980px

Nokia:980px

kindle:1600px

ipad:980px

iPad pro:1024px

 

测试代码:

 1 <!DOCTYPE html>
 2 <html lang="zh">
 3 <head>
 4     <meta charset="UTF-8" />    
 5     <meta http-equiv="X-UA-Compatible" content="ie=edge" />
 6     <title>移动端网页宽度值(未加meta viewport标签)</title>
 7 </head>
 8 <body>
 9     <script type="text/javascript">
10         alert(document.body.scrollWidth);
11     </script>
12 </body>
13 </html>

移动端网页宽度值(未加meta viewport标签)

总结:

基本都是980px,除了ipad pro特殊。

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-06
  • 2022-12-23
  • 2021-09-07
  • 2021-12-05
  • 2022-02-12
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案