一款基于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 特效范例整理
Aug 22 HTML / CSS
css3新增颜色表示方式分享
Apr 15 HTML / CSS
详解CSS3 Media Queries中媒体属性的使用
Feb 29 HTML / CSS
CSS3不透明度实例讲解
Apr 26 HTML / CSS
CSS3实现背景透明文字不透明的示例代码
Jun 25 HTML / CSS
使用CSS实现弹性视频html5案例实践
Dec 26 HTML / CSS
微信浏览器取消缓存的方法
Mar 28 HTML / CSS
快速创建 HTML5 Canvas 电信网络拓扑图的示例代码
Mar 21 HTML / CSS
Canvas 像素处理之改变透明度的实现代码
Jan 08 HTML / CSS
h5网页水印SDK的实现代码示例
Feb 19 HTML / CSS
Html5饼图绘制实现统计图的方法
Aug 05 HTML / CSS
amazeui模态框弹出后立马消失并刷新页面
Aug 19 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
PHP 编程安全性小结
2010/01/08 PHP
深入理解ob_flush和flush的区别(ob_flush()与flush()使用方法)
2013/02/06 PHP
Linux中用PHP判断程序运行状态的2个方法
2014/05/04 PHP
php+ajax实现无刷新文件上传功能(ajaxuploadfile)
2018/02/11 PHP
laravel excel 上传文件保存到本地服务器功能
2019/11/14 PHP
javascript new 需不需要继续使用
2009/07/02 Javascript
js中判断文本框是否为空的两种方法
2011/07/31 Javascript
jQuery不使用插件及swf实现无刷新文件上传
2014/12/08 Javascript
了解VUE的render函数的使用
2017/06/08 Javascript
利用node.js制作命令行工具方法教程(一)
2017/06/22 Javascript
vue中各组件之间传递数据的方法示例
2017/07/27 Javascript
基于Vue2.0+ElementUI实现表格翻页功能
2017/10/23 Javascript
微信小程序 MinUI组件库系列之badge徽章组件示例
2018/08/20 Javascript
微信小程序实现预览图片功能
2020/10/22 Javascript
详解Vue.js v-for不支持IE9的解决方法
2018/12/29 Javascript
vue通过数据过滤实现表格合并
2020/11/30 Javascript
vue element upload组件 file-list的动态绑定实现
2019/10/11 Javascript
小程序实现多个选项卡切换
2020/06/19 Javascript
深入解析微信小程序开发中遇到的几个小问题
2020/07/11 Javascript
[01:02:17]2014 DOTA2华西杯精英邀请赛 5 24 DK VS VG
2014/05/26 DOTA
简单介绍Python的轻便web框架Bottle
2015/04/08 Python
举例讲解Python程序与系统shell交互的方式
2015/04/09 Python
Python实现将HTML转成PDF的方法分析
2019/05/04 Python
教你如何编写、保存与运行Python程序的方法
2019/07/12 Python
Python pathlib模块使用方法及实例解析
2020/10/05 Python
详解使用双缓存解决Canvas clearRect引起的闪屏问题
2019/04/29 HTML / CSS
世界上最大的巴士旅游观光公司:Big Bus Tours
2016/10/20 全球购物
日语专业毕业生自荐信
2013/11/11 职场文书
简历中自我评价范文3则
2013/12/14 职场文书
作弊检讨书1000字
2014/02/01 职场文书
坚守艰苦奋斗精神坚决反对享乐主义整改措施
2014/09/17 职场文书
2014年班组工作总结
2014/11/20 职场文书
2015年后勤工作总结范文
2015/04/08 职场文书
飞越疯人院观后感
2015/06/09 职场文书
2015年董事长秘书工作总结
2015/07/23 职场文书
抖音动画片,皮皮虾,《治愈系》动画在用这首REMIX作为背景音乐,Anak ,The last world with you完整版
2022/03/16 杂记