平板电脑和移动设备上的固定导航栏问题解决方案

3
我目前正在为一家公司建立一个响应式网站,但在平板电脑和手机上,我的固定导航栏会隐藏我的内容/跳过它们,而我希望在切换时它能将"内容"向下推。此外,我的.headerplace类在移动设备上会隐藏.bannerplace。如果您能帮我解决这个问题,我会非常感激。链接到https://jsfiddle.net/wy38hy37/13/
<!Doctype html> 
  <title>NK Electrical LTD</title>
 <body>
<div class="container">
        <header class="headerplace">
            <div class="logo">
                <img src="http://s15.postimg.org/q1sf0zvsb/nklogo.png" alt="NK Electrical LTD Logo">
            </div>
            <nav class="navigation">
                <li><a href="#home.html">Home</a></li>
                <li><a href="#electrical.html">Electrical Installations</a></li>
                <li><a href="#lighting.html">Lighting</a></li>
                <li><a href="#appliances.html">Home appliances</a></li>
                <li><a href="#about.html">About us</a></li>
                <li><a href="#contact.html">Contact us</a></li>
            </nav>
            <a id="i-nav" href="#"></a>

        </header>
        <div class="bannerplace">

        </div>
        <div class="content-row group">
            <div class="primary-content col">
                <img class="headlineimg" src="http://s10.postimg.org/yvwknf09l/logoone.png"alt="Electrical logo"><h2>Electrical Installations</h2>
                <hr>
                <p>A house, a factory and generally every building has a life span of 40-50 years. The electrical installation for such a building will be designed and implemented only once, and should work reliably within time. The importance of the electrical installation process is of equal importance so as to be able to support the necessities of this amount of time within the years to come and not just of today. Therefore, due to this specific element, the electrical installation requires: experience, technical knowhow, excellent organizational structure and for sure an after sale service.</p>
                <p>In ΝΚ Electrical Ltd we have placed in action our past experiences, continuously trying to line up with technology reaching a high expectation limit in organizational behavior, but most of all we value the after sale service that mantles a serious part of the puzzle called electrical installations.</p>
                <button class="btn-action" type="submit">Book a table</button>
            </div>
            <div class="primary-content col">
                <img class="headlineimg" src="http://s29.postimg.org/4jne5no53/emergency.png"alt="Electrical logo"><h2>24/7 Emergency Service</h2>
                <hr>
                 <p>A house, a factory and generally every building has a life span of 40-50 years. The electrical installation for such a building will be designed and implemented only once, and should work reliably within time. The importance of the electrical installation process is of equal importance so as to be able to support the necessities of this amount of time within the years to come and not just of today. Therefore, due to this specific element, the electrical installation requires: experience, technical knowhow, excellent organizational structure and for sure an after sale service.</p>
                <p>In ΝΚ Electrical Ltd we have placed in action our past experiences, continuously trying to line up with technology reaching a high expectation limit in organizational behavior, but most of all we value the after sale service that mantles a serious part of the puzzle called electrical installations.</p>
                <button class="btn-action" type="submit">Book a table</button>
            </div>
            <div class="secondary-content col">
                <img class="headlineimg" src="http://s29.postimg.org/hp2wbri0n/lighting.png"alt="Electrical logo"><h2>Lighting</h2>
                <hr>
                 <p>A house, a factory and generally every building has a life span of 40-50 years. The electrical installation for such a building will be designed and implemented only once, and should work reliably within time. The importance of the electrical installation process is of equal importance so as to be able to support the necessities of this amount of time within the years to come and not just of today. Therefore, due to this specific element, the electrical installation requires: experience, technical knowhow, excellent organizational structure and for sure an after sale service.</p>
                <p>In ΝΚ Electrical Ltd we have placed in action our past experiences, continuously trying to line up with technology reaching a high expectation limit in organizational behavior, but most of all we value the after sale service that mantles a serious part of the puzzle called electrical installations.</p>
                <button class="btn-action" type="submit">Book a table</button>
            </div>
            <div class="third-content col">
                <img class="headlineimg" src="http://s15.postimg.org/8alw76z6z/homeappliances1.png"alt="Home Appliances 1"><h2>Home Appliances</h2>
                <hr>
                 <p>A house, a factory and generally every building has a life span of 40-50 years. The electrical installation for such a building will be designed and implemented only once, and should work reliably within time. The importance of the electrical installation process is of equal importance so as to be able to support the necessities of this amount of time within the years to come and not just of today. Therefore, due to this specific element, the electrical installation requires: experience, technical knowhow, excellent organizational structure and for sure an after sale service.</p>
                <p>In ΝΚ Electrical Ltd we have placed in action our past experiences, continuously trying to line up with technology reaching a high expectation limit in organizational behavior, but most of all we value the after sale service that mantles a serious part of the puzzle called electrical installations.</p>
                <button class="btn-action" type="submit">Book a table</button>
            </div>
            <div class="third-content col">
                <img class="headlineimg" src="http://s2.postimg.org/khlogvand/homeappliances2.png"alt="Home Appliances 2"><h2>Home Appliances</h2>
                <hr>
                 <p>A house, a factory and generally every building has a life span of 40-50 years. The electrical installation for such a building will be designed and implemented only once, and should work reliably within time. The importance of the electrical installation process is of equal importance so as to be able to support the necessities of this amount of time within the years to come and not just of today. Therefore, due to this specific element, the electrical installation requires: experience, technical knowhow, excellent organizational structure and for sure an after sale service.</p>
                <p>In ΝΚ Electrical Ltd we have placed in action our past experiences, continuously trying to line up with technology reaching a high expectation limit in organizational behavior, but most of all we value the after sale service that mantles a serious part of the puzzle called electrical installations.</p>
                <button class="btn-action" type="submit">Book a table</button>
            </div>
        </div>
        <footer class="footerplace">
            <p>&copy;2016. NK Electrical LTD</p>
        </footer>
    </div>

 </body>
2个回答

0

我通过在 body 标签上添加 padding:top:200px; 解决了移动分辨率下横幅被标题/导航栏遮挡的问题。

但是,我的导航栏仍然存在不能将内容向下推的主要问题。


0
因为您的标题使用了position fixed固定在页面顶部,而您的导航栏位于此标题内部,所以切换导航栏不会推动页面内容向下。
这是因为当前的标题已经被“取出”文档流,它不会影响其后的任何元素。唯一让导航栏将页面元素向下移动的方法是删除position fixed属性。
-- 编辑
在移动端断点上,将position fixed更改为position relative或inherit。
例如:
.headerplace {
    position: relative;
    top:0px;
    width:100%;
    padding: 15px;
    min-height: 100px; 
}

https://jsfiddle.net/wy38hy37/15/ - 现在会将页面上的其他元素向下推。


是的,在我添加固定位置之前,一切都表现得很好,当我切换我的导航栏图标时,一切都被推下来了,但我也希望我的导航栏在用户滚动时移动。 - Aris Constantinou
是的,使用固定位置是不可能实现这个目标的。 - andy jones
有没有什么建议可以在不使用position fixed的情况下实现我的目标? - Aris Constantinou
谢谢您的CSS更正,它可以在移动设备上将内容向下推,但是只要滚动到底部,用户就无法看到导航,因此问题仍然存在,但我很感谢您的帮助 :) - Aris Constantinou

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接