如何在Foundation Framework中禁用“缩放缩放”?

时间:2015-02-12 11:56:26

标签: javascript jquery html5 css3 zurb-foundation

我可以禁用"缩放缩放"在我的网络应用程序?怎么样?

或者应用程序锁定了您在打开应用程序时检测到的响应性? 这可能吗?

2 个答案:

答案 0 :(得分:1)

尝试在<head>区域添加此内容:

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">

答案 1 :(得分:0)

当然可以

        /* Prevent elements to be highlighted on tap */
        -webkit-tap-highlight-color: rgba(0,0,0,0);
         /* Put the scroller into the HW Compositing layer right from the start */
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-text-size-adjust: none;
        -moz-text-size-adjust: none;
        -ms-text-size-adjust: none;
        -o-text-size-adjust: none;
        text-size-adjust: none;
        height: 100%;
        overflow: hidden;