一款基于css3的列表toggle特效实例教程


Posted in HTML / CSS onJanuary 04, 2015

今天给大家带来一款基于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.   colorwhite;   
  12. }   
  13.   
  14. .menu {   
  15.   background: tomato;   
  16.   padding20px;   
  17.   positionabsolute;   
  18.   z-index: 1;   
  19.   height55px;   
  20.   top: 0;   
  21.   rightright50px;   
  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-size30px;   
  53.   padding20px;   
  54.   height100px;   
  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. }  
HTML / CSS 相关文章推荐
CSS3 制作绽放的莲花采用效果叠加实现
Jan 31 HTML / CSS
CSS3 3D旋转rotate效果实例介绍
May 03 HTML / CSS
详解CSS3实现响应式手风琴效果
Jun 10 HTML / CSS
HTML5仿手机微信聊天界面
Mar 18 HTML / CSS
HTML5 用动画的表现形式装载图像
Mar 08 HTML / CSS
Html5实现如何在两个div元素之间拖放图像
Mar 29 HTML / CSS
Html5插件教程之添加浏览器放大镜效果的商品橱窗
Jan 07 HTML / CSS
HTML5 Canvas入门学习教程
Mar 17 HTML / CSS
整理HTML5移动端开发的常用触摸事件
Apr 15 HTML / CSS
HTML5头部标签的一些常用信息小结
Oct 23 HTML / CSS
教你使用Canvas处理图片的方法
Nov 28 HTML / CSS
css3实现背景图片半透明内容不透明的方法示例
Apr 13 HTML / CSS
一款基于css3麻将筛子3D翻转特效的实例教程
Dec 31 #HTML / CSS
CSS Grid布局教程之网格单元格布局
Dec 30 #HTML / CSS
CSS Grid布局教程之浏览器开启CSS Grid Layout汇总
Dec 30 #HTML / CSS
CSS Grid布局教程之什么是网格布局
Dec 30 #HTML / CSS
使用CSS Grid布局实现网格的流动
Dec 30 #HTML / CSS
纯css3制作网站后台管理面板
Dec 30 #HTML / CSS
一款纯css3实现的鼠标悬停动画按钮
Dec 29 #HTML / CSS
You might like
在“咖啡之国”感受咖啡文化
2021/03/03 咖啡文化
PHP Socket 编程
2010/04/09 PHP
163的邮件用phpmailer发送(实例详解)
2013/06/24 PHP
再Docker中架设完整的WordPress站点全攻略
2015/07/29 PHP
Google排名中的10个最著名的 JavaScript库
2010/04/27 Javascript
单击浏览器右上角的X关闭窗口弹出提示的小例子
2013/06/12 Javascript
js判断60秒以及倒计时示例代码
2014/01/24 Javascript
JavaScript返回网页中锚点数目的方法
2015/04/03 Javascript
浅谈javascript获取元素transform参数
2015/07/24 Javascript
js实现数组冒泡排序、快速排序原理
2016/03/08 Javascript
JS平滑无缝滚动效果的实现代码
2016/05/06 Javascript
关于动态生成dom绑定事件失效的原因及解决方法
2016/08/06 Javascript
全面解析vue中的数据双向绑定
2017/05/10 Javascript
Vue实现搜索 和新闻列表功能简单范例
2018/03/16 Javascript
jQuery实现鼠标滑过商品小图片上显示对应大图片功能【测试可用】
2018/04/27 jQuery
node跨域转发 express+http-proxy-middleware的使用
2018/05/31 Javascript
深入探讨JavaScript的最基本部分之执行上下文
2019/02/12 Javascript
微信小程序实现左右列表联动
2020/05/19 Javascript
微信小程序导航栏跟随滑动效果的实现代码
2019/05/14 Javascript
[55:44]完美世界DOTA2联赛决赛 FTD vs Phoenix 第二场 11.08
2020/11/11 DOTA
Python实现的简单线性回归算法实例分析
2018/12/26 Python
python dlib人脸识别代码实例
2019/04/04 Python
Django处理Ajax发送的Get请求代码详解
2019/07/29 Python
Python 余弦相似度与皮尔逊相关系数 计算实例
2019/12/23 Python
python pprint模块中print()和pprint()两者的区别
2020/02/10 Python
html5 自定义播放器核心代码
2013/12/20 HTML / CSS
html如何对span设置宽度
2019/10/30 HTML / CSS
体育教育专业自荐信范文
2013/12/20 职场文书
学生社团文化节开幕式主持词
2014/03/28 职场文书
股东协议书范本
2014/04/14 职场文书
党的群众路线教育实践活动对照检查材料范文
2014/09/24 职场文书
党员组织生活会发言材料
2014/10/17 职场文书
上课睡觉检讨书300字
2014/11/18 职场文书
Python List remove()实例用法详解
2021/08/02 Python
Pygame Rect区域位置的使用(图文)
2021/11/17 Python
使用Canvas绘制一个游戏人物属性图
2022/03/25 Javascript