一個頁面上需要多個環形選單,這個框架是不是在一個頁面上只能實現一個環形選單,如果放兩個或多個的話選單的子選單個數是相同的,而我需要的是不同個數的。
淡淡烟草味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>