搜索

首页  >  问答  >  正文

javascript - wheelmenu.js 是不是一个页面正能实现一个环形菜单?

一个页面上需要多个环形菜单,这个框架是不是在一个页面上只能实现一个环形菜单,如果放两个或多个的话 菜单的子菜单个数是相同的,而我需要的是不同个数的。

習慣沉默習慣沉默2721 天前685

全部回复(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
  • 取消回复