使用数组中的图像填充多个div而不重复

时间:2013-11-03 11:44:07

标签: javascript jquery arrays

我有一个包含15个div元素的页面。我需要使用来自至少36个图像的阵列的随机图像填充每个div。然后,我需要让图像随机旋转。我让这一部分使用Choose image URL from large array, insert into random DIV on page, cycle中提供的解决方案。

我想改进代码,以便如果图像已经显示在页面上,则不允许从数组中调用图像。这就是我所坚持的。

到目前为止,这是我的代码。

function random_int(max) {
            return Math.floor(Math.random() * max);
        }

        $(document).ready(function() {
            var images = ['http://placekitten.com/159/159', 'http://placekitten.com/160/160', 'http://placekitten.com/161/161', 'http://placekitten.com/162/162', 'http://placekitten.com/163/163', 'http://placekitten.com/164/164', 'http://placekitten.com/165/165', 'http://placekitten.com/166/166', 'http://placekitten.com/167/167', 'http://placekitten.com/168/168', 'http://placekitten.com/169/169', 'http://placekitten.com/170/170', 'http://placekitten.com/171/171', 'http://placekitten.com/172/172', 'http://placekitten.com/173/173', 'http://placekitten.com/174/174', 'http://placekitten.com/175/175', 'http://placekitten.com/176/176', 'http://placekitten.com/177/177', 'http://placekitten.com/178/178', 'http://placekitten.com/179/179'];
            var $divs = $('div.projectItem');

            $divs.each(function() {
                $('<img width="100%" />', {
                    src: 'http://placekitten.com/180/180',
                    alt: this.id
                }).appendTo(this);
            });

            function switchImage() {
                var $div = $divs.eq(random_int($divs.length));
                var image = images[random_int(images.length)];

                $div.find('img').attr('src', image);
            }

            var imageChanger = setInterval(switchImage, 500);
        });

I have created a JSfiddle example

我想要实现的另一件事是在页面首次加载时在每个div中都有一个图像。您将在jsfiddle示例中注意到div是空的,并且可以在页面加载后保持这种状态一段时间。我已经尝试在每个div中包含一个初始的img标签,但是当加载随机图像时,它们不会替换初始图像,每个div最终会有两个图像。我相信这是因为.appendTo(this);。我想我必须将其改为replaceChild或类似的?

第一次发布海报和JS初学者所赞赏的任何帮助。

1 个答案:

答案 0 :(得分:0)

每次添加图像时,只需从阵列中删除图像即可 更换图像后,不要忘记将图像从IMG标签推入阵列。

这样的事情:

function random_int(max) {
    return Math.floor(Math.random() * max);
}

$(document).ready(function() {
    var images = ['http://placekitten.com/159/159', 'http://placekitten.com/160/160', 'http://placekitten.com/161/161', 'http://placekitten.com/162/162', 'http://placekitten.com/163/163', 'http://placekitten.com/164/164', 'http://placekitten.com/165/165', 'http://placekitten.com/166/166', 'http://placekitten.com/167/167', 'http://placekitten.com/168/168', 'http://placekitten.com/169/169', 'http://placekitten.com/170/170', 'http://placekitten.com/171/171', 'http://placekitten.com/172/172', 'http://placekitten.com/173/173', 'http://placekitten.com/174/174', 'http://placekitten.com/175/175', 'http://placekitten.com/176/176', 'http://placekitten.com/177/177', 'http://placekitten.com/178/178', 'http://placekitten.com/179/179'];
    var $divs = $('div.projectItem');

    $divs.each(function() {
        $('<img width="100%" />', {
            src: 'http://placekitten.com/180/180',
            alt: this.id
        }).appendTo(this);
    });

    function switchImage() {
        var $div = $divs.eq(random_int($divs.length));
        var image_i = random_int(images.length);
        var image = images[image_i];
        var $img = $div.find('img');

        images.splice(images_i,1);
        images.push($img.attr("src"));

        $img.attr('src', image);
    }

    var imageChanger = setInterval(switchImage, 500);
});
祝你好运。