博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery简单手风琴效果(Accordion)学习总结
阅读量:6618 次
发布时间:2019-06-25

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

一、基本手风琴效果——参考jQuery UI官网(补充:这个是jQuery UI效果)

Section 1

Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.

Section 2

Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In suscipit faucibus urna.

Section 3

Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.

  • List item one
  • List item two
  • List item three

Section 4

Cras dictum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aenean lacinia mauris vel est.

Suspendisse eu nisl. Nullam ut libero. Integer dignissim consequat lectus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.

二、其他简单代码

三、带弹性减震效果——使用了easing插件

jQuery代码

$(document).ready(function(){    /* This code is executed after the DOM has been completely loaded */    /* Changing thedefault easing effect - will affect the slideUp/slideDown methods: */    $.easing.def = "easeOutBounce";    /* Binding a click event handler to the links: */    $('li.button a').click(function(e){            /* Finding the drop down list that corresponds to the current section: */        var dropDown = $(this).parent().next();                /* Closing all other drop down sections, except the current one */        $('.dropdown').not(dropDown).slideUp('slow');        dropDown.slideToggle('slow');                /* Preventing the default event (which would be to navigate the browser to the link's address) */        e.preventDefault();    })    });

 四、手风琴菜单效果

jquery

$(document).ready(function(e){    $("#nav-accordion").hide();    $("#menu-button").click(function(){        $("#nav-accordion").slideToggle();                $('#accordion > ul:eq(0)').show();    });                $("#accordion > li:eq(1)").click(function(){        if(false == $(this).next().is(':visible')) {               $('#accordion > ul').slideUp(500);        }        $(this).next().slideToggle(500);    });        $("#accordion ul > li ").click(function(){        if(false == $(this).next().is(':visible')) {            $('#accordion ul > ul').slideUp(500);        }        $(this).next().slideToggle(500);    });});

 

 

 

 

转载于:https://www.cnblogs.com/JoannaQ/archive/2012/10/06/2712710.html

你可能感兴趣的文章
给js文件传参数
查看>>
tomcat web.xml启动加载类
查看>>
Linux 配置SSH信任
查看>>
【九度OJ1352】|【剑指offer41】和为S的两个数字
查看>>
《android-文件大小》
查看>>
HTTPS的工作原理
查看>>
PhoneGap使用PushPlugin插件实现消息推送
查看>>
关于Java中的单例模式
查看>>
datepicker
查看>>
CentOS 7输入startx无法启动图形化界面
查看>>
#51CTO学院四周年# 终于在这里遇到你
查看>>
Java学习笔记 1—命名规则、数据类型、运算符
查看>>
FusionCharts入门教程,使用指南
查看>>
数组的一些方法
查看>>
关于MFC中WM_MOUSEHOVER和WM_MOUSELEAVE消息的使用
查看>>
我的友情链接
查看>>
Android掌中游斗地主游戏源码完整版
查看>>
LeetCode - 26. 删除排序数组中的重复项
查看>>
Linux LVM逻辑卷配置过程详解
查看>>
IT讲师韩顺平:创业不易,尚硅谷延续教育初心
查看>>