【Jquery手风琴】

news/2024/11/15 7:21:28/

让它兄弟元素的子元素收起来

<body><div class="box"><ul class="outerUl"><li><h4>软件教学</h4><ul class="childUl"><li>java</li><li>web前端</li><li>安卓开发</li><li>iOS开发</li></ul></li><li><h4>游戏动漫</h4><ul class="childUl"><li>英雄联盟</li><li>王者荣耀</li><li>超级玛丽</li><li>双截龙</li></ul></li><li><h4>电商企业</h4><ul class="childUl"><li>淘宝</li><li>天猫</li><li>京东</li><li>苏宁易购</li></ul></li><li><h4>营销培训</h4><ul class="childUl"><li>seo</li><li>微信营销</li><li>网络创业</li><li>市场营销</li></ul></li></ul></div><!-- <h4></h4> -->
</body>
  <style>* {margin: 0;padding: 0;}.box {width: 500px;height: auto;margin: auto;}ul {list-style: none;}.outerUl>li {text-align: center;background-color: royalblue;border-bottom: 1px solid gray;}.outerUl>li:last-child {border-bottom: none;}.childUl>li {width: 100%;background-color: white;line-height: 40px;}.childUl {display: none;}h4 {padding: 8px 0;}</style>
<script>$('h4').click(function(){$(this).siblings().slideToggle(1000)$('.childUl').not($(this).next()).slideUp(1000)})
</script>

http://www.ppmy.cn/news/590441.html

相关文章

html手风琴案例

我们在前端开发的时候经常遇到鼠标经过的时候发生事件&#xff0c;鼠标离开的时候发生事件的效果 下面看看效果图 这下来看看我们的代码吧 html部分 <div id"box"><ul><li><a href"#"><img src"./images/1.jpg" a…

制作手风琴

开发工具与关键技术&#xff1a;DW 隐藏 作者&#xff1a;魏钦 撰写时间&#xff1a;11.28 进入DW界面&#xff0c;ctrln新建HTML骨架&#xff0c;在body标签放入一个div标签&#xff0c;给一个类名&#xff0c;然后div标签里面再嵌套四个div标签作为子元素&#xff0c;四…

手风琴jQuery

静态页面 <script src"https://cdn.bootcdn.net/ajax/libs/jquery/3.6.1/jquery.min.js"></script><style>* {margin: 0;padding: 0;}.box {width: 500px;height: auto;margin: auto;}ul {list-style: none;}.outerUl>li {text-align: center;b…

jQuery制作手风琴

Hi&#xff0c;好久不见&#xff0c;想信大家都对jQuery动画效果有一点的了解&#xff0c;所以今天本人用jQuery动画效果来做一个手风琴效果。样式展示&#xff1a;这里我用了三个div标签来分了三个职业&#xff0c;背景采用了粉色&#xff0c;每个职业框下面还有三个英雄名&am…

Jquery制作手风琴 -- 案例

JQ手风琴制作 Draven 效果图jquery插件html代码css代码js代码 效果图 jquery插件 https://download.csdn.net/download/Messchao/25731245 html代码 <div class"king"><ul><li class"current"><a href"#"><img src&…

【手风琴】

手风琴 手风琴视频效果图&#xff1a;效果图&#xff1a;代码&#xff1a; 手风琴 视频效果图&#xff1a; 手风琴 效果图&#xff1a; 代码&#xff1a; <!DOCTYPE html> <html lang"en"><head><meta charset"UTF-8" /><met…

jquery手风琴案例练习

手风琴案例练习 显示效果 重点&#xff1a; 1.鼠标进入事件mouseenter 鼠标离开事件mouseleave 2. 再执行下一次操作前都要先通过.stop() 停止动画 3.sublings()选择当前事件外的兄弟事件 完整代码 <!DOCTYPE html> <html><head><meta charset"utf…

jQuery UI之手风琴

1、实现源码 <!DOCTYPE html> <html> <head> <meta charset"UTF-8"> <title>手风琴</title> <link rel"stylesheet" href"../js/jquery-ui-1.10.4/development-bundle/themes/base/jquery.ui.all.css"&g…