0

我正在开发一个 jQuery 插件,它隐藏容器中的所有元素,然后使用 fadeIn() 或 jquery 的 animate 函数在设定的时间间隔内显示它们。

到目前为止,我已经设法将所有元素放入一个数组中,如果我这样做,我可以在警报中打印出 html

$(children).each(function (index, val) {
     alert(this);
});

但是,当我尝试将元素作为 html 再次添加到文档中时,我没有运气。

我试过了

$(container).append(this);

$(container).appendChild(this);

但仍然没有运气。

理想情况下,我需要能够再次淡入淡出()每个元素,并在设定的时间间隔内为每个元素添加一个 CSS 类。

(function($) {

$.fn.myPlugin = function (options) {

    // Set default options

    var defaults = {
        rate : '1000',
    }

    var options = $.extend(defaults, options);


    // Hide all elements within parent container
    $(this).children().hide();


    var container = $(this).selector;

    // Store children in loader variable
    var loader = $(this).children();


    // Put all elements into an array

    var children = [];

    $(loader).each(function(idx) {
        children.push(this.outerHTML); 
    });


    // Iterate over array and fadeIn elements;

    $(children).each(function (index, val) {


    });


};

})(jQuery);
4

1 回答 1

2

有人这样想吗?: http: //jsfiddle.net/zKpp2/1/

(function ($) {
    $.fn.myPlugin = function (options) {
        // Set default options
        var defaults = $.extend({
            rate: 1000,
        }, options);

        // Hide all elements within parent container
        $(this).children().hide();
        var container = $(this).selector;

        // Store children in loader variable
        var loader = $(this).children(),
            length = loader.length;

        (function fadeLoop(index){
            if (index < length)
                loader.eq(index).fadeIn(defaults.rate, function(){
                    $(this).addClass('foo'); // add class when done animating.
                    fadeLoop(index + 1);
                });
        })(0);
    };
})(jQuery);

但是,我会推荐一些更灵活的东西:http: //jsfiddle.net/zKpp2/3/

(function ($) {
    $.fn.myPlugin = function (options) {
        // Set default options
        var def = $.extend({
            rate: 1000,
            onStepStart: $.noop,
            onStepFinish: $.noop,
            onFinish: $.noop
        }, options);

        // Hide all elements within parent container
        $(this).children().hide();
        var container = this;

        // Store children in loader variable
        var loader = $(this).children(),
            length = loader.length;

        (function fadeLoop(index) {
            if (index < length) {
                def.onStepStart.apply(
                loader.eq(index).fadeIn(def.rate, function () {
                    def.onStepFinish.apply(this);
                    fadeLoop(index + 1);
                }).get());
            } else def.onFinish.apply(container.get());
        })(0);

        return container;
    };
})(jQuery);

您可以像这样使用它来完成您想要的相同事情(以及许多其他事情):

$("#loader").myPlugin({
    rate: 1000,
    onStepStart: function(){
        $(this).addClass("foo");  // "this" just started fading in
    },
    onStepFinish: function(){
        $(this).removeClass("foo").addClass("bar");  // "this" finished fading in
    },
    onFinish: function(){
        $(this).css("background", "green");  // "this" is the original selector.
    }
}).css("background", "red");  // chains properly

编辑- 插件的第二个版本不验证def.onStepStartetc 实际上是函数,所以如果你将它们设置为函数以外的东西,它会中断。

于 2013-01-18T17:10:17.700 回答