搜尋

首頁  >  問答  >  主體

javascript - wheelmenu.js 是不是一個頁面正能實作一個環形選單?

一個頁面上需要多個環形選單,這個框架是不是在一個頁面上只能實現一個環形選單,如果放兩個或多個的話選單的子選單個數是相同的,而我需要的是不同個數的。

習慣沉默習慣沉默2766 天前706

全部回覆(1)我來回復

  • 淡淡烟草味

    淡淡烟草味2017-06-12 09:33:47

    <a href="#wheel3" class="wheel-button ne">
        <span>+</span>
    </a>

    href 的值指定要觸發的選單 裡面有多少就出多少

    <ul id="wheel3" class="wheel">
            <li class="item"><a href="#home">A</a></li>
            <li class="item"><a href="#home">A</a></li>
            <li class="item"><a href="#home">A</a></li>
            <li class="item"><a href="#home">A</a></li>
            <li class="item"><a href="#home">B</a></li>
    </ul>
    <a href="#wheel2" class="wheel-button ne">
        <span>+</span>
    </a>
    <ul id="wheel2" class="wheel">
            <li class="item"><a href="#home">A</a></li>
            <li class="item"><a href="#home">A</a></li>
            <li class="item"><a href="#home">A</a></li>
    </ul>

    回覆
    0
  • 取消回覆