簡體   English   中英

如何將下拉菜單放在導航欄中?

[英]How do I put my drop down menu in the navigation bar?

因此,我剛剛開始從w3school學習html。 我已經開始了我的小項目,我將創建一個簡單的網站。 現在,我只能從導航欄中創建下拉菜單。 我似乎無法將其放在導航欄中。 ps。我編輯了一些我認為不相關的代碼。

    .topnav {
        overflow: hidden;
        padding-top: 6px;
        padding-bottom: 6px;
        margin: 0px;
    }
    .topnav h1 {
        text-align: center;
        font-size: 22px;
        color: #FFFFFF;
        margin: 0px;
    }
    .dropbtn {
        background-color: #3498DB;
        color: white;
        padding: 16px;
        font-size: 16px;
        border: none;
        cursor: pointer;
    }
    .dropdown {
        position: relative;
        display: inline-block;
        float: left;
    }
    .show {
        display:block;
    }
</style>
</head>
<body>
    <div class="topnav">
        <h1>Home</h1>
        <div class="dropdown">
            <button onclick="myFunction()" class="dropbtn">Menu</button>
            <div id="myDropdown" class="dropdown-content">
                <a href="#content">Content</a>
            </div>
        </div>
    </div>

在下面添加CSS和jQuery

CSS ::

 #myDropdown{
      display: none;
    }

jQuery的::

$('.dropbtn').click(function(){
     $(this).next('#myDropdown').stop(true,false).slideToggle();
  })
You have to use script for hide/show your dropdown menu, Here you can see script 

http://jsfiddle.net/renukaSingh/njhwr4z2/

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM