我的编程空间,编程开发者的网络收藏夹
学习永远不晚

如何实现基于css3的列表toggle特效

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

如何实现基于css3的列表toggle特效

这篇文章主要讲解了“如何实现基于css3的列表toggle特效”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“如何实现基于css3的列表toggle特效”吧!

  实现的代码。

  htm代码:

复制内容到剪贴板

  1. <div class='menu'>   

  2.         toggle visibility</div>   

  3.     <ul class='list reverse'>   

  4.         <li class='item'>Item 1</li>   

  5.         <li class='item'>Item 2</li>   

  6.         <li class='item'>Item 3</li>   

  7.         <li class='item'>Item 4</li>   

  8.         <li class='item'>Item 5</li>   

  9.         <li class='item'>Item 6</li>   

  10.         <li class='item'>Item 7</li>   

  11.         <li class='item'>Item 8</li>   

  12.         <li class='item'>Item 9</li>   

  13.         <li class='item'>Item 10</li>   

  14.         <li class='item'>Item 11</li>   

  15.         <li class='item'>Item 12</li>   

  16.     </ul>  

  css3代码:

CSS Code复制内容到剪贴板

  1. * {   

  2.   -moz-box-sizing: border-box;   

  3.        box-sizing: border-box;   

  4. }   

  5.   

  6. body {   

  7.   margin: 0;   

  8.   padding: 0;   

  9.   font-family: 'Avenir Next';   

  10.   background: #000;   

  11.   color: white;   

  12. }   

  13.   

  14. .menu {   

  15.   background: tomato;   

  16.   padding: 20px;   

  17.   position: absolute;   

  18.   z-index: 1;   

  19.   height: 55px;   

  20.   top: 0;   

  21.   rightright: 50px;   

  22. }   

  23.   

  24. .list {   

  25.   -webkit-perspective: 100vw;   

  26.           perspective: 100vw;   

  27.   width: 100vw;   

  28.   height: 100vh;   

  29.   display: -webkit-flex;   

  30.   display: -ms-flexbox;   

  31.   display: flex;   

  32.   -webkit-flex-flow: column wrap;   

  33.       -ms-flex-flow: column wrap;   

  34.           flex-flow: column wrap;   

  35. }   

  36. .list.hidden {   

  37.   pointer-events: none;   

  38. }   

  39. .list.hidden .item {   

  40.   -webkit-animation: disappear both;   

  41.           animation: disappear both;   

  42.   -webkit-animation-direction: alternate;   

  43.           animation-direction: alternate;   

  44. }   

  45. .list.reverse {   

  46.   -webkit-flex-flow: row-reverse wrap-reverse;   

  47.       -ms-flex-flow: row-reverse wrap-reverse;   

  48.           flex-flow: row-reverse wrap-reverse;   

  49. }   

  50.   

  51. .item {   

  52.   font-size: 30px;   

  53.   padding: 20px;   

  54.   height: 100px;   

  55.   width: calc(100vw / 3);   

  56.   height: calc(100vh / 4);   

  57.   -webkit-animation: appear both;   

  58.           animation: appear both;   

  59. }   

  60.   

  61. .item:nth-child(1) {   

  62.   background: #008a8a;   

  63.   -webkit-animation-delay: 0.03333s !important;   

  64.   -webkit-animation-duration: 0.1s !important;   

  65. }   

  66.   

  67. .item:nth-child(2) {   

  68.   background: #009494;   

  69.   -webkit-animation-delay: 0.06667s !important;   

  70.   -webkit-animation-duration: 0.2s !important;   

  71. }   

  72.   

  73. .item:nth-child(3) {   

  74.   background: #009f9f;   

  75.   -webkit-animation-delay: 0.1s !important;   

  76.   -webkit-animation-duration: 0.3s !important;   

  77. }   

  78.   

  79. .item:nth-child(4) {   

  80.   background: #00a9a9;   

  81.   -webkit-animation-delay: 0.13333s !important;   

  82.   -webkit-animation-duration: 0.4s !important;   

  83. }   

  84.   

  85. .item:nth-child(5) {   

  86.   background: #00b3b3;   

  87.   -webkit-animation-delay: 0.16667s !important;   

  88.   -webkit-animation-duration: 0.5s !important;   

  89. }   

  90.   

  91. .item:nth-child(6) {   

  92.   background: #00bdbd;   

  93.   -webkit-animation-delay: 0.2s !important;   

  94.   -webkit-animation-duration: 0.6s !important;   

  95. }   

  96.   

  97. .item:nth-child(7) {   

  98.   background: #00c7c7;   

  99.   -webkit-animation-delay: 0.23333s !important;   

  100.   -webkit-animation-duration: 0.7s !important;   

  101. }   

  102.   

  103. .item:nth-child(8) {   

  104.   background: #00d2d2;   

  105.   -webkit-animation-delay: 0.26667s !important;   

  106.   -webkit-animation-duration: 0.8s !important;   

  107. }   

  108.   

  109. .item:nth-child(9) {   

  110.   background: #00dcdc;   

  111.   -webkit-animation-delay: 0.3s !important;   

  112.   -webkit-animation-duration: 0.9s !important;   

  113. }   

  114.   

  115. .item:nth-child(10) {   

  116.   background: #00e6e6;   

  117.   -webkit-animation-delay: 0.33333s !important;   

  118.   -webkit-animation-duration: 1s !important;   

  119. }   

  120.   

  121. .item:nth-child(11) {   

  122.   background: #00f0f0;   

  123.   -webkit-animation-delay: 0.36667s !important;   

  124.   -webkit-animation-duration: 1.1s !important;   

  125. }   

  126.   

  127. .item:nth-child(12) {   

  128.   background: #00fafa;   

  129.   -webkit-animation-delay: 0.4s !important;   

  130.   -webkit-animation-duration: 1.2s !important;   

  131. }   

  132.   

  133. @-webkit-keyframes appear {   

  134.   from {   

  135.     opacity: 0;   

  136.     -webkit-transform: scale(0.8);   

  137.             transform: scale(0.8);   

  138.   }   

  139.   to {   

  140.     opacity: 1;   

  141.     -webkit-transform: scale(1);   

  142.             transform: scale(1);   

  143.   }   

  144. }   

  145.   

  146. @keyframes appear {   

  147.   from {   

  148.     opacity: 0;   

  149.     -webkit-transform: scale(0.8);   

  150.             transform: scale(0.8);   

  151.   }   

  152.   to {   

  153.     opacity: 1;   

  154.     -webkit-transform: scale(1);   

  155.             transform: scale(1);   

  156.   }   

  157. }   

  158. @-webkit-keyframes disappear {   

  159.   from {   

  160.     opacity: 1;   

  161.     -webkit-transform: scale(1);   

  162.             transform: scale(1);   

  163.   }   

  164.   to {   

  165.     opacity: 0;   

  166.     -webkit-transform: scale(0.9) rotateX(0deg) translateZ(-1500px);   

  167.             transform: scale(0.9) rotateX(0deg) translateZ(-1500px);   

  168.   }   

  169. }   

  170. @keyframes disappear {   

  171.   from {   

  172.     opacity: 1;   

  173.     -webkit-transform: scale(1);   

  174.             transform: scale(1);   

  175.   }   

  176.   to {   

  177.     opacity: 0;   

  178.     -webkit-transform: scale(0.9) rotateX(0deg) translateZ(-1500px);   

  179.             transform: scale(0.9) rotateX(0deg) translateZ(-1500px);   

  180.   }   

  181. }  

感谢各位的阅读,以上就是“如何实现基于css3的列表toggle特效”的内容了,经过本文的学习后,相信大家对如何实现基于css3的列表toggle特效这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

如何实现基于css3的列表toggle特效

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

基于JavaScript如何实现动态雨滴特效

今天小编给大家分享一下基于JavaScript如何实现动态雨滴特效的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。演示技术栈介
2023-07-02

CSS3如何实现时间轴特效

小编给大家分享一下CSS3如何实现时间轴特效,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!最近打开电脑就能看到极客学院什么新用户vip免费一个月,就进去看看咯,这
2023-06-08

CSS3如何实现雪花飘落特效

这篇文章主要介绍“CSS3如何实现雪花飘落特效”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“CSS3如何实现雪花飘落特效”文章能帮助大家解决问题。在CSS3中我们可以使用animation属性来创建
2023-07-04

CSS3+js如何实现简单的时钟特效

小编给大家分享一下CSS3+js如何实现简单的时钟特效,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!什么是csscss是一种用来表现HTML或XML等文件样式的计算机语言,主要是用来设计网页的样式,使网页更加美化。它也是一
2023-06-09

基于CSS3实现的毛玻璃渐变效果

编程学习网:毛玻璃说白了就是磨砂玻璃。隔着表面粗糙的磨砂玻璃观赏窗外的风景,总会带着点朦胧美,给人以若隐若现的感觉,远近之间的层次感也因此而被体现出来。这种效果不仅美观,而且可以通过清晰和模糊的对比来突出重点内容,因此被广泛应用于Web设计领域。本教程我们也来制作一个这样的效果。
基于CSS3实现的毛玻璃渐变效果
2024-04-23

css3如何实现二维码扫描特效

这篇文章主要介绍了css3如何实现二维码扫描特效,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。先看效果:第一步,实现网格背景:background-image: lin
2023-06-08

CSS3如何实现田字格列表样式

本篇内容介绍了“CSS3如何实现田字格列表样式”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!CSS