3

我正在尝试加载我的图像并淡入。它的工作。但是让我们假设我有 4 张图片。现在,我的脚本通过加载最后一张图片而不是第一张图片来工作。如何让我的 js 加载第一个图像,并在加载第一个图像后开始加载第二个图像?

这是我的代码:

$(function(){
    $("a").click(function(){
        $("#load").load('load.html', function() {
            $('#load img').hide();
            alert($("#load img").length);

            $('#load img').each( function(){
                $(this).on('load', function () {
                    $(this).fadeIn();
                });
            });
        });
        return false;
    });
});
4

2 回答 2

1

http://jsfiddle.net/5uNGR/15/

尝试在每个图像加载时不尝试对其执行淡入淡出的操作,而是在每次发生任何加载事件时测试动画队列中下一个图像的正常性,然后在动画回调中,查看下一个图像是否正常准备好了。这是一个应该可以工作的脚本。

顺便说一句,有关图像就绪测试的更多信息,请参阅http://www.sajithmr.me/javascript-check-an-image-is-loaded-or-not

$(function () {
    // util fn to test if image loaded properly
    var isImgLoadOk = function (img) {
        if (!img.complete) { return false; }
        if (typeof img.naturalWidth != "undefined" && img.naturalWidth == 0) {
            return false;
        }
        return true;
    };

    $("a").on('click', function () {

        $("#load").load('load.html', function () {

            var imgs = $('#load img').hide(), //create image array and hide (chaining)
                animIndex = 0, //position in the animation queue
                isFading = false; //track state of whether an animation is in prog

            // this is a load handler AND is called in the fadeIn callback if 
            // not at last image in the collection
            var fadeNextImg = function () {

                // make sure a load event didn't happen in the middle of an animation
                if (isFading) return;

                // last image in animation queue?
                var isLast = animIndex == imgs.length - 1;

                // get the raw image out of the collection and test if it is loaded happily
                var targetImage = imgs[animIndex];
                if (isImgLoadOk(targetImage)) {
                    // jQuery-up the htmlImage
                    targetImage = $(targetImage);

                    // increment the queue
                    animIndex++;

                    // set animation state - this will ignore load events
                    isFading = true;

                    // fade in the img
                    targetImage.fadeIn('slow', function () {
                        isFading = false;
                        // test to see if next image is ready to load by 
                        // recursively calling the parent fn
                        if (!isLast) fadeNextImg();
                    });

                }
            };

            imgs.on('load', fadeNextImg);

        });

        return false;
    });

});
于 2012-12-03T03:06:33.220 回答
0

Ron 的解决方案是有点过度设计的 IMO。如果您的意图确实是在动画开始之前加载所有图像,那么您可以执行类似于以下的操作:

$(function(){
    $("a").click(function(){
        $("#load").load('load.html', function() {
            $('#load img').hide(); // I would recommend using css to hide the image instead
            alert($("#load img").length);

            $("#load img").each(function(i, image) {
               setTimeout(function() { // For each image, set increasingly large timeout before fadeIn
                  $(this).fadeIn();
               }, 2000 * i);
            });
        });
        return false;
    });
});
于 2012-12-06T14:43:05.893 回答