android - 我的模板页面在移动设备上自动缩放

标签 android jquery html mobile

出于某种原因,每当我使用实际移动设备在我的移动模板上打开我的一个页面时,它会自动放大页面。有什么方法可以确保页面从 100% 开始吗?

这是我的代码。

<html>
  <head>
    <style>
      li{
        line-height:3em;
      }
      ad{
        padding: 0 0 0 4em;
      }
      n{
        margin:10;
      }
      p {
        font-size: 130%;
      }
      a:link { color: white; text-decoration: none}
      mm {
        float: left;
        width: 100%;
        padding: 0;
        margin:0;
        list-style-type: none;
      }
      m {
        width: 6em;
        text-decoration: none;
        color: white;
        margin:10px;
        background-color: #243d77;
        padding: 0.9em 0.6em;
      }
    </style>
    <title>[Content]</title>
    <link type="text/css" rel="stylesheet" href="/stylesheets/[Content].css" />
    <script type="text/javascript" src="/js/jquery.min.js"></script>
    <script type="text/javascript" src="/js/pngFix/jquery.pngFix.js"></script>
    <script type="text/javascript" src="/js/jquery.cycle.all.latest.js"></script>
    <script type="text/javascript">     
      shuffle = function(o){ //v1.0
        for(var j, x, i = o.length; i; j = parseInt(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x);
        return o;
      };

      $(document).ready(function() {
        $(document).pngFix(); 
      }); 
    </script>
  </head>
  <body>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <div id="container">
      <div id="header">
        <div class="logo">
          <a href="/index.htm">
            <img alt="" width="189" height="69" src="[Content]" />
          </a>
        </div>
        <div class="loginlink">
          <a href="client-login.htm">
            Client Access Click Here
          </a>
        </div>
      </div>
      <div id="subheader">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        <div style="clear: left;"></div>
        <div id="wrapper1">
          <div style="text-align: center;">
          </div>
          <div id="wrapper2">
            <div style="text-align: center;">
            </div>
            <div id="maincol">
              <div style="text-align: center;">
              </div>
              <div id="leftcol">
                <div style="text-align: center;">
                  <mm>
                    <li>
                      <m>
                        <n>
                          <a href="#">
                            &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; Home &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                          </a>
                        </n>
                      </m>
                    </li>
                    <li></li>
                    <li>
                      <m>
                        <n>
                          <a href="#">
                            &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; What We Do &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                          </a>
                        </n>
                      </m>
                    </li>
                    <li></li>
                    <li>
                      <m>
                        <n>
                          <a href="#">
                            &nbsp; &nbsp; Why Work With Us&nbsp; &nbsp;&nbsp; &nbsp;
                          </a>
                        </n>
                      </m>
                    </li>
                    <li></li>
                    <li>
                      <m>
                        <n>
                          <a href="#">
                            &nbsp;How We Provide Value &nbsp;
                          </a>
                        </n>
                      </m>
                    </li>
                    <li></li>
                    <li>
                      <m>
                        <n>
                          <a href="#">
                            &nbsp;&nbsp; Who We Work With &nbsp;&nbsp; &nbsp;
                          </a>
                        </n>
                      </m>
                    </li>
                    <li></li>
                    <li>
                      <m>
                        <n>
                          <a href="#">
                            Results We've Achieved&nbsp;
                          </a>
                        </n>
                      </m>
                    </li>
                    <li></li>
                    <li>
                      <m>
                        <n>
                          <a href="#">
                            &nbsp; &nbsp; Where We Service &nbsp;&nbsp; &nbsp;&nbsp;
                          </a>
                        </n>
                      </m>
                    </li>
                    <li></li>
                    <li>
                      <m>
                        <n>
                          <a href="#">
                            &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; [Content] &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;
                          </a>
                        </n>
                      </m>
                    </li>
                    <li></li>
                    <li>
                      <m>
                        <n>
                          <a href="#">
                            &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; Get In Touch &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;
                          </a>
                        </n>
                      </m>
                    </li>
                  </mm>
                </div>
                <mm>
                </mm>
              </div>
            </div>
            {tag_pagecontent}
          </div>
        </div>
      </div>
      <div style="clear: both;"></div>
      <div id="footer">
        <p>&copy; 2014 [Content]</p>
        <p>
        </p>
        <ul>
          <li><a href="/sitemap.htm">Site Map</a></li>
          <li><a href="/disclaimer.htm">Disclaimer</a></li>
          <li><a href="/privacy.htm">Privacy Policy</a></li>
        </ul>
      </div>
    </div>
  </body>
</html>

最佳答案

该行为取决于设备,现代 Android 4.x 手机有一个名为“在概览中打开页面”的选项,默认情况下启用,这会导致网页页面完全显示(没有缩放).

通常,强制使用 100% 缩放级别并禁止用户在手机上缩放是正确显示(正确设计)移动网站的常见做法。这是通过如下所示的视口(viewport)元标记实现的。

<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />

initial-scale=1.0 值表示缩放设置为 100%,user-scalable=0 表示禁用用户缩放。您可以尝试使用 initial-scale 值,但结果可能因平台而异。

尝试设置此元标记以查看它是否有效并强制初始缩放 50%:

<meta content='width=device-width, initial-scale=0.5, maximum-scale=1.0, user-scalable=1' name='viewport' />

同样,这是标签的非常规用法,因为您试图强制缩小而不是放大,但请尝试并判断它是否有效...

关于android - 我的模板页面在移动设备上自动缩放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25656537/

相关文章:

html - 以 html 形式输入文本的边框

html - overflow-x 拒绝显示?

java - 添加到 SQLite 数据库时不允许重复

Jquery:简单选择器不起作用,忽略父元素

java - 如何在 Glide 上显示 gif

javascript - 如何获取可拖动元素掉落的值?

jquery - 页脚动画有效但文本未显示

javascript - 如何在 G+ 分享按钮左侧设置 google plus 计数器

Android objectAnimator 动画 Layout 的 backgroundColor

android - WebView 检测 iframe 中的点击