jQuery中 循环过滤器菜单

  • 源码大小:5.2MB
  • 所需积分:1积分
  • 源码编号:19JP-3779
  • 浏览次数:726次
  • 最后更新:2023年07月22日
  • 所属栏目:其他
本站默认解压密码:19jp.com 或 19jp_com

简介

您有一个包含许多需要筛选的项目的列表吗?在本文中,我们将研究如何使用jQuery和CSS创建一个循环弹出菜单来过滤列表中的项目。

它非常适合移动设备,因为它占用的空间更少,而且可以轻松快速筛选列表项目,而无需在屏幕上向下滚动。让我们开始吧!

如何使用它:

1.假设您有一个长的HTML列表,如下所示:

  1. <ul class="tasks">
  2. <li class="one red">
  3. <span class="task-title">Make New Icon</span>
  4. <span class="task-time">5pm</span>
  5. <span class="task-cat">Web App</span>
  6. </li>
  7. <li class="one red">
  8. <span class="task-title">Catch up with Brian</span>
  9. <span class="task-time">3pm</span>
  10. <span class="task-cat">Mobile Project</span>
  11. </li>
  12. <li class="two green">
  13. <span class="task-title">Design Explorations</span>
  14. <span class="task-time">2pm</span>
  15. <span class="task-cat">Company Web site</span>
  16. </li>
  17. <li class="three yellow">
  18. <span class="task-title">New Projects</span>
  19. <span class="task-time">2pm</span>
  20. <span class="task-cat">Starting</span>
  21. </li>
  22. </ul>

2.为循环弹出菜单创建HTML。在本例中,我们将使用Ionicons库来提供此菜单所需的图标。请注意,每个列表项必须具有一个唯一的ID,如下所示:

  1. <div class="filter-btn">
  2. <!-- Menu Items -->
  3. <a id="one" href="#"><i class="ion-ios-checkmark-outline"></i></a>
  4. <a id="two" href="#"><i class="ion-ios-alarm-outline"></i></a>
  5. <a id="three" href="#"><i class="ion-ios-heart-outline"></i></a>
  6. <a id="all" href="#"><i class="ion-ios-star-outline"></i></a>
  7. <!-- Trigger Button -->
  8. <span class="toggle-btn ion-android-funnel"></span>
  9. </div>

3.循环弹出菜单所需的CSS样式。

  1. .filter-btn {
  2. position: absolute;
  3. z-index: 2;
  4. right: 0;
  5. width: 40px;
  6. height: 40px;
  7. transition: all 0.4s ease-in-out 0s;
  8. }
  9.  
  10. .filter-btn span {
  11. width: 40px;
  12. height: 40px;
  13. background: #FA396B;
  14. display: block;
  15. position: absolute;
  16. right: 25px;
  17. top: -46px;
  18. text-align: center;
  19. color: #fff;
  20. line-height: 40px;
  21. border-radius: 50%;
  22. font-size: 22px;
  23. z-index: 999;
  24. }
  25.  
  26. span.toggle-btn.ion-android-funnel:hover {
  27. cursor: pointer;
  28. }
  29.  
  30. .filter-btn a {
  31. position: absolute;
  32. width: 40px;
  33. height: 40px;
  34. line-height: 40px;
  35. text-align: center;
  36. right: 25px;
  37. display: block;
  38. top: -46px;
  39. color: #fff;
  40. z-index: 99;
  41. font-size: 22px;
  42. transition: all .4s cubic-bezier(.68, 1, .265, 1)
  43. }
  44.  
  45. .filter-btn:after {
  46. height: 170px;
  47. width: 170px;
  48. content: '';
  49. background-color: #FA396B;
  50. position: absolute;
  51. top: -110px;
  52. right: -40px;
  53. border-radius: 50%;
  54. transform: scale(0);
  55. transition: all 0.3s ease-in-out 0s;
  56. }
  57.  
  58. .filter-btn.open span.toggle-btn.ion-android-funnel {
  59. background-color: #DE3963;
  60. }
  61.  
  62. .filter-btn.open .ion-android-funnel:before {
  63. content: "\f2d7";
  64. }
  65.  
  66. .open:after {
  67. transform: scale(1);
  68. }
  69.  
  70. .filter-btn.open a:nth-child(1) {
  71. transform: translate(9px, -62px);
  72. }
  73.  
  74. .filter-btn.open a:nth-child(2) {
  75. transform: translate(-50px, -34px);
  76. }
  77.  
  78. .filter-btn.open a:nth-child(3) {
  79. transform: translate(-56px, 25px);
  80. }
  81.  
  82. .filter-btn.open a:nth-child(4) {
  83. transform: translate(5px, 61px);
  84. }

4.在结束body标记之前加载所需的jQuery库。

  1. <script src="/path/to/cdn/jquery.min.js"></script>

5.启用切换按钮以打开/关闭圆形弹出菜单。

  1. $(function () {
  2. $('.toggle-btn').click(function () {
  3. $('.filter-btn').toggleClass('open');
  4. });
  5.  
  6. $('.filter-btn a').click(function () {
  7. $('.filter-btn').removeClass('open');
  8. });
  9. });

6.启用菜单链接以筛选列表项。您可能已经注意到,我们使用了jQuery的幻灯片向下此处的函数可提供平滑的过渡效果。

  1. $('#all').click(function () {
  2. $('ul.tasks li').slideDown(300);
  3. });
  4.  
  5. $('#one').click(function () {
  6. $('.tasks li:not(.one)').slideUp(300, function () {
  7. $('.one').slideDown(300);
  8. });
  9. });
  10.  
  11. $('#two').click(function () {
  12. $('.tasks li:not(.two)').slideUp(300, function () {
  13. $('.two').slideDown(300);
  14. });
  15. });
  16.  
  17. $('#three').click(function () {
  18. $('.tasks li:not(.three)').slideUp(300, function () {
  19. $('.three').slideDown(300);
  20. });
  21. });

预览截图