博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
javascript实现的手风琴折叠菜单效果
阅读量:6647 次
发布时间:2019-06-25

本文共 1668 字,大约阅读时间需要 5 分钟。

 

演示地址:

    

     实现效果:

     

 

HTML代码:

	
手风琴效果
  • 第一类目

    • 1
    • 2
    • 3
    • 4
  • 第二类目

    • 5
    • 6
    • 7
  • 第三类目

    • 8
    • 9
    • 10
    • 11
  • 第四类目

    • 12
    • 13
    • 14
    • 15

 

CSS代码:

/** by @Kevinの快乐时代 *2015/5/21*/*{     	margin: 0;padding: 0;     }     ul,li{      	list-style: none;      }    .main{    	width: 300px;    	color:#666;    	position: absolute;    	top: 0;    	right: 0;    	bottom: 0;    	left: 0;    	margin:auto;     }    .main ul li ul{    	display: none;    	padding: 15px;    	background-color: #ecf0f1;    }    #expand li ul li {  padding: 5px 0;  border-bottom: 1px dotted #999;}.h3-common{	  font-size: 15px;	   color: #fff;	   padding: 5px 22px;	   border-bottom: 1px dotted #e7e7e7;}    .main h3{      	   background: url(http://www.iconfont.cn/uploads/fonts/font-155705-.png?color=ecf0f1&size=20) no-repeat #00bb9c left center;    }    .main h3.active{    	  background: url(http://www.iconfont.cn/uploads/fonts/font-69084-.png?color=ecf0f1&size=20) no-repeat #ea8010 left center;    }    .li_active{    	background-color: #56abe4;    	color: #fff;    	text-align: center;    	border-radius: 3px;    }

 

javascript代码:

 

var oExpand=document.getElementById('expand');  var ah3=oExpand.getElementsByTagName('h3');  var aUl=oExpand.getElementsByTagName('ul');  var aLi=null;  var arrLi=[];for(var i=0;i

  

 

转载于:https://www.cnblogs.com/kevinCoder/p/4520024.html

你可能感兴趣的文章
XML中的url链接写法
查看>>
洛谷P1119 灾后重建
查看>>
ArcSDE:"Bad Login User" 错误解决方法
查看>>
android
查看>>
jasypt-spring-boot
查看>>
(诊断)为GitHub添加SSH key时出现“Could not open a connection to your authentication agent”错误的应对方案(转)...
查看>>
彼得原理
查看>>
30分钟让你了解MongoDB基本操作(转)
查看>>
用户交互程序
查看>>
Python学习【第17篇】:网络编程之粘包
查看>>
容器内部安装scp,拷贝到外部物理机
查看>>
微信js分享朋友圈(一)
查看>>
【原】centos6.5下cdh4.6 Oozie安装
查看>>
redis学习及实践3---Jedis、JedisPool、Jedis分布式实例介绍
查看>>
mobiscroll的例子
查看>>
浏览器存储页面
查看>>
WebApi接口返回值不困惑:返回值类型详解
查看>>
Windows终端屏幕显示库Public Domain Curses(PDCurses)使用
查看>>
【建站经验】 一个成熟的大型网站系统架构演化之路
查看>>
【RAID】raid1 raid2 raid5 raid6 raid10的优缺点和做各自raid需要几块硬盘
查看>>