手风琴 - 向每个导航项添加箭头?
我已经在 我们做什么 下实现了这个手风琴脚本,
我需要向每个导航项添加向上和向下箭头,如下所示见这张图片。我在哪里以及如何将两种状态(非活动箭头和活动箭头)编码到 jQuery.我想我需要将其编码到 jQuery 中?
I have implemented this accordions script under What We Do
I need to add up and down arrows to each nav item as seen in this pic. Where and how do I code in the two states(inactive arrow & active arrow) into the jQuery. Im thinking I need to code this into the jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用一些简单的 CSS 类来完成此操作,因为
a
在打开时具有不同的类:toggler Toogger-Closed
和Toggler Toggler-Opened< /代码>
You can do this with some simple CSS classes, since the
a
's have different classes when they are opened:toggler toggler-closed
andtoggler toggler-opened
这看起来相对简单,尽管我可能使用了太多 jQuery:
jQuery:
css:
This seems relatively simple, though I'm perhaps using a little too much jQuery:
jQuery:
css: