一款基于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的@media属性实现页面响应式布局示例代码
Feb 10 HTML / CSS
魔幻般冒泡背景的CSS3按钮动画
Feb 27 HTML / CSS
CSS3 二级导航菜单的制作的示例
Apr 02 HTML / CSS
HTML5 使用 sessionStorage 进行页面传值的方法
Jul 02 HTML / CSS
X/HTML5 和 XHTML2
Oct 17 HTML / CSS
HTML5中语义化 b 和 i 标签
Oct 17 HTML / CSS
html5 canvas 简单画板实现代码
Jan 05 HTML / CSS
HTML5 通信API 跨域门槛将不再高、数据推送也不再是梦
Apr 25 HTML / CSS
iframe在移动端的缩放的示例代码
Oct 12 HTML / CSS
详解CSS3.0(Cascading Style Sheet) 层叠级联样式表
Jul 16 HTML / CSS
使用canvas对video视频某一刻截图功能
Sep 25 HTML / CSS
浅析CSS在DevTools 中架构演变
Oct 05 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
Yii框架调试心得--在页面输出执行sql语句
2014/12/25 PHP
解析javascript 实用函数的使用详解
2013/05/10 Javascript
jquery调取json数据实现省市级联的方法
2015/01/29 Javascript
详细解读JavaScript的跨浏览器事件处理
2015/08/12 Javascript
JavaScript学习笔记之ES6数组方法
2016/03/25 Javascript
Node.js的npm包管理器基础使用教程
2016/05/26 Javascript
jQuery解决input元素的blur事件和其他非表单元素的click事件冲突问题
2016/08/15 Javascript
浅谈时钟的生成(js手写简洁代码)
2016/08/20 Javascript
Vue概念及常见命令介绍(1)
2016/12/08 Javascript
tablesorter.js表格排序使用方法(支持中文排序)
2017/02/10 Javascript
利用node.js写一个爬取知乎妹纸图的小爬虫
2017/05/03 Javascript
jQuery实现下拉菜单的实例代码
2017/06/19 jQuery
10个在JavaScript开发中常遇到的BUG
2017/12/18 Javascript
JS引用传递与值传递的区别与用法分析
2018/06/01 Javascript
bootstrap table实现横向合并与纵向合并
2019/07/18 Javascript
[04:39]显微镜下的DOTA2第十三期—Pis卡尔个人秀
2014/04/04 DOTA
[43:32]2014 DOTA2华西杯精英邀请赛 5 25 LGD VS NewBee第一场
2014/05/26 DOTA
[01:02:03]2014 DOTA2华西杯精英邀请赛 5 24 NewBee VS VG
2014/05/26 DOTA
[02:04]2014DOTA2国际邀请赛 BBC小组赛第三天总结
2014/07/12 DOTA
Python自动调用IE打开某个网站的方法
2015/06/03 Python
Python 绘图和可视化详细介绍
2017/02/11 Python
python3实现名片管理系统
2020/11/29 Python
python爬虫开发之Beautiful Soup模块从安装到详细使用方法与实例
2020/03/09 Python
django 模型中的计算字段实例
2020/05/19 Python
基于pandas向csv添加新的行和列
2020/05/25 Python
Ubuntu配置Pytorch on Graph (PoG)环境过程图解
2020/11/19 Python
Python3+SQLAlchemy+Sqlite3实现ORM教程
2021/02/16 Python
一款基于css3的动画按钮代码教程
2014/11/23 HTML / CSS
联想新加坡官方网站:Lenovo Singapore
2017/10/24 全球购物
手机促销活动方案
2014/02/05 职场文书
仓库管理员岗位职责
2014/03/19 职场文书
海南召开党的群众路线教育实践活动总结大会新闻稿
2014/10/21 职场文书
党的群众路线教育实践活动个人对照检查材料(校长)
2014/11/05 职场文书
2015年建党94周年演讲稿
2015/03/19 职场文书
2016年“我们的节日·端午节”活动总结
2016/04/01 职场文书
温馨祝福晨语:美丽的一天从我的问候开始
2019/11/28 职场文书