jQuery技术

jQuery Collapse轻量级的手风琴菜单插件(2)

字号+ 作者:H5之家 来源:H5之家 2016-08-28 11:04 我要评论( )

Example usage of options: // Initializing collapse plugin// with custom open/close methods,// persistence plugin and accordion behaviour$("#demo").collapse({ open: function() {// The context of 'this

Example usage of options:

// Initializing collapse plugin // with custom open/close methods, // persistence plugin and accordion behaviour $("#demo").collapse({ open: function() { // The context of 'this' is applied to // the collapsed details in a jQuery wrapper this.slideDown(100); }, close: function() { this.slideUp(100); }, accordion: true, persist: true }); Events Binding events

You can listen for the opened and closed events on a collapsed collection.

$("#demo").bind("opened", function(e, section) { console.log(section, " was opened"); }); $("#demo").bind("closed", function(e, section) { console.log(section, " was closed"); }); Triggering events

You can manually trigger an open, close or toggle event to change the state of a section:

$("#demo").trigger("open") // open all sections $("#demo").trigger("close") // close all sections $("#demo h2 a").last().trigger("toggle") // toggle last section

When a section changes state, it will trigger either an “opened” or “closed” event in return, depending on it’s new state.

API methods

If you’re using vanilla JavaScript to instantiate the plugin, you’ll get direct access to the open, close and toggle methods.

var demo = new jQueryCollapse($("#demo")); // Initializing plugin demo.open(); // Open all sections demo.close(); // Close all sections demo.open(0); // Open first section demo.open(1); // Open second section demo.close(0); // Close first section demo.toggle(1); // Toggle second section 相关链接
  • 项目地址:
  • Github地址:https://github.com/danielstocks/jQuery-Collapse
  • 本文系作者 问说网 授权问说网发表,并经问说网编辑,转载请注明出处和 本文链接。

    本站文章除注明转载外,均为本站原创或翻译,欢迎任何形式的转载,但请务必注明出处,尊重他人劳动。
    转载请注明:文章转载自:问说网 » jQuery Collapse轻量级的手风琴菜单插件
    本文标题:jQuery Collapse轻量级的手风琴菜单插件
    本文地址:

    顶 1 踩 1

    交流:问说网设计交流群:12043441(快速加入),与众多设计师交流设计,分享素材。
    设计微博:@问说网 欢迎关注获取网页设计资源、下载顶尖设计素材。

     

    1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

    相关文章
    • jQuery 核心

      jQuery 核心

      2016-08-29 15:01

    • jquery实现网页定位导航

      jquery实现网页定位导航

      2016-08-27 13:00

    • jQuery学习系列第一篇

      jQuery学习系列第一篇

      2016-08-26 10:04

    • jquery教程,jquery教程视频下载

      jquery教程,jquery教程视频下载

      2016-08-25 13:00

    网友点评