扫码关注官方订阅号
一个页面上需要多个环形菜单,这个框架是不是在一个页面上只能实现一个环形菜单,如果放两个或多个的话 菜单的子菜单个数是相同的,而我需要的是不同个数的。
<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>
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
扫描下载App
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
href 的值指定要触发的菜单 里面有多少就出多少