zoukankan      html  css  js  c++  java
  • jquery插件开发示例

    /****通用部分 BEGIN *****/
    $.fn.sidebar = function(options) { var defaults = { event: 'click' }, settings = $.extend({}, defaults, options); return this.each(function() { return new Sidebar(this, settings); });/}; /****通用部分 END *****/ function Sidebar(el, settings) { this.$sidebar = $(el); this.settings=settings; this.$foldPanel =this.$sidebar.find('.fold'); this.$unFoldPanel = this.$sidebar.find('.unfold'); this.init(); } Sidebar.prototype = { init: function() { var _self=this; _self.$sidebar.on('fold', $.proxy(_self.fold, _self)); _self.$sidebar.on('unfold', $.proxy(_self.unfold, _self)); _self.$sidebar.find('.fold_btn').on(_self.settings.event, function(e) { e.preventDefault(); _self.$sidebar.trigger('fold'); }); _self.$sidebar.find('.unfold_btn').on(_self.settings.event, function(e) { e.preventDefault(); _self.$sidebar.trigger('unfold'); }); }, fold: function() { var self = this; self.$unFoldPanel.animate({ 40 }, function() { $(this).hide(); self.$foldPanel.show(); }); }, unfold: function() { var self = this; self.$foldPanel.hide(); self.$unFoldPanel.show(function() { $(this).animate({ 200 }); }); } };
  • 相关阅读:
    基础技术
    Luogu1438 无聊的数列(线段树)
    树状数组从入门到入土
    左偏树
    PA2014-Final Zarowki(堆)
    BZOJ1455罗马游戏
    【小米oj】 海盗分赃
    【小米oj】 最少交换次数
    【小米oj】 大胃王的烦恼
    【小米oj】 不一样的排序
  • 原文地址:https://www.cnblogs.com/byronvis/p/5208161.html
Copyright © 2011-2022 走看看