一个页面上需要多个环形菜单,这个框架是不是在一个页面上只能实现一个环形菜单,如果放两个或多个的话 菜单的子菜单个数是相同的,而我需要的是不同个数的。
<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>
href 的值指定要触发的菜单 里面有多少就出多少