为什么我的网站不能在我的手机上缩放?

时间:2016-05-31 03:52:46

标签: html css media-queries responsive

我已经尝试了所有我能想到的东西,以使这个布局适合移动设备,但它似乎并不想工作。我把视口,元标记。我已经放了@media css标签,但仍然没有区别。

这完全让我感到困惑,为什么这不起作用。

这是HTML / CSS:                   

    </title>
    <style>
        @font-face {
            font-family: 'trench';
            src: url('fonts/trench100free.ttf');
        }

        .content {
            width: 480px;
            overflow: hidden;
        }

        .trench-bold {
            text-align: left;
            font-family: trench;
            font-size: 55px;
            font-weight: bold;
            color: white;
        }

        .pull {
            margin-bottom: 2px;
            font-size: 150%;
            font-family: trench;
            font-weight: bold;
            -webkit-transition: .5s ease;
            transition: .5s ease;
            width: 180px;
            padding: 5px;
            color: black;
            background-color: white;
            text-align: right;
        }

        .pull:hover{
            -webkit-transition: .5s ease;
            width: 80%;
            background-color: red;
            text-size: 175%;
            transition: .5s ease;
        }

        body {
            margin: 0px;
        }

        a {
            text-decoration: none;
            color: black;
        }

        a:active {
            color: black;
        }

        @media screen and (max-width: 400px) {  
            .content {
                width: 100%;
            }

            .pull {
                width: 50%;
            }

            .pull:hover {
                width: 90%
            }
        }
    </style>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
</head>
<body background="index_background.png">
    <div class="content" align="left">
        <section class="trench-bold">/The Goust Server</section>
        <br>
        <a href="downloads.html"><div class="pull">Downloads</div></a>

        <a href="links.html"><div class="pull">Links</div></a>

        <a href="links.html"><div class="pull">About</div></a>
        <br><br><br><br>
        <section class="trench-bold">/Pages</section>
        <br>
        <a href="samsworld.html"><div class="pull">Sam's World</div></a>
    </div>
</body>

3 个答案:

答案 0 :(得分:2)

请参阅,在触摸设备上“悬停”效果不起作用。您必须使用一些JavaScript / JQuery来实现此效果并相应地修改CSS和HTML代码。

[相反,您可以使用:active代替:hover,但这将是部分解决方案。]

你也可以尝试以下JS代码:

<script>

document.addEventListener("touchstart", function(){}, true);

</script>

除此之外,我强烈建议您浏览以下链接,以帮助您了解问题以及可用于实现悬停效果的各种解决方案。

http://www.prowebdesign.ro/how-to-deal-with-hover-on-touch-screen-devices/

J.Joe提供的链接也会有所帮助。

答案 1 :(得分:0)

实际上它确实有效,尝试镀铬开发工具的设备模式并设置任何小型设备,或者只是调整浏览器的窗口大小。

答案 2 :(得分:0)

问题是:触摸屏设备上不存在悬停行为。 阅读:How do I simulate a hover with a touch in touch enabled browsers?