jquery扩展、手风琴

我爱你,不需要太多的话,因为这个有一点点温暖就会感动的季节。
韩老师,好久没更新了。注意仔细读取文章。 有助于学习。。。
freestyle{
我想当职业杀手,
我再跟你向天呐吼。
把你当你个小狗,
赶紧给我离家出走。
}

一、一项扩展

$.fu.名 = function(){
};
例子:

        $.fn.toGreen = function(){
            this.css({'background':'green'});
        };
        $.fn.toRed = function(){
            this.css({'background':'red'});
        };
        $(document).ready(function(){
            $('#box').on('click',function(){
                $(this).toGreen();
            });
        });

二、多项扩展

$.fn.extend({
josn 形式。
});

例子:

$.fn.extend({
            toGreen: function(){
                this.css('background','green');
            },
            toRed: function(){
                this.css('background','red');
            }
        });
        $(document).ready(function(){
            $('#box').on('click',function(){
                $(this).toGreen();
            });
        }); 

三、手风琴

比如:W = 40;
        当前2
        index<=2
        index*W
        index>2
        $(this).widtn()+(index-1)*W
jquery扩展、手风琴_第1张图片

你可能感兴趣的:(jquery扩展、手风琴)