Javascript Flip Animation Bug

时间:2012-12-18 10:10:01

标签: javascript jquery animation jquery-animate

我有一个绝对定位的div网格,每个div包含3个图像。这些图像通过类(.z1,.z2和.z3)设置的z-index堆叠在一起。

我选择我的div成为一个数组并将div随机化。

我使用.animate来“翻转”第一张图片并显示第二张图片。 (.z3被隐藏)然后我循环遍历那些div并切换类,z1变为z3(在底部),z3移动到z2(现在在中间)并且z2变为z1。

这在大多数情况下都有效,但偶尔会出现一个问题,即看似div中没有​​任何图像显示。

除了jQuery slideToggles之外我还没什么用处,所以我会很感激一些帮助。

HTML

<div class="grid"> 
     <div class="r1 c1">
         <img src="<?=$grid->image_1_1->getPath()?>" width="149" height="104" class="z1" alt="">
         <img src="<?=$grid->image_1_2->getPath()?>" width="149" height="104" class="z2" alt="">
         <img src="<?=$grid->image_1_3->getPath()?>" width="149" height="104" class="z3" alt="">
     </div>
     <div class="r1 c2">
         <img src="<?=$grid->image_2_1->getPath()?>" width="137" height="104" class="z1" alt="">
         <img src="<?=$grid->image_2_2->getPath()?>" width="137" height="104" class="z2" alt="">
         <img src="<?=$grid->image_2_3->getPath()?>" width="137" height="104" class="z3" alt="">
     </div>

网格中有更多div,但它们在布局上都是相同的。 r1 / c1类只是顶部的位置:左边:

的jQuery

//Find all sub divs in the grid and trigger the flip on them (in order currently)
function begin() {
    var index = 0;

    window.setInterval(function() {
        var divs = $('div.grid div');

        divs.sort(function() { return 0.5 - Math.random();});

        flip(divs[index]);

        if(++index == divs.length)
            index = 0;

    }, 1000);
}
//homepage grid animation
function flip(targetDiv) {

    //Function begins gather variables      
    // All images inside target div are same size

    var currWidth= $(targetDiv).children('img:eq(0)').width();
    var currHeight= $(targetDiv).children('img:eq(0)').height();
    var currMargin = currWidth/2;

    //Remove .z3 - the "bottom" image so that it is not seen during flip
    $('img.z3').width('auto').hide();
    $('img.z2, img.z1').css('margin-left', 0).show();

    // The Animation
    $(targetDiv).children('img.z2').stop().css({width:0,height:''+currHeight+'px',marginLeft:''+currMargin+'px',opacity:'1'});

    $(targetDiv).children('img.z1').stop().animate({width:0,height:''+currHeight+'px',marginLeft:''+currMargin+'px',opacity:'1'},
        {duration:1000});
    $(targetDiv).children('img.z2').stop().animate({width:+currWidth,height:''+currHeight+'px',marginLeft:0,opacity:'1'},
        {duration:1000});

    //Swap classes
    $(targetDiv).children('img').each(function () {
        var $self = $(this);

        if ($self.hasClass('z1')) {
            $self.removeClass('z1').addClass('z3');
            $self.width(currWidth);
        } else if ($self.hasClass('z2')) {
            $self.removeClass('z2').addClass('z1');
        } else if ($self.hasClass('z3')) {
            $self.removeClass('z3').addClass('z2');
        }
    });

    //Trying to combat items with 0px width on second run through
    //$(targetDiv).children('img').width(currWidth);
}

//Trigger Rotation
begin()

不幸的是,我无法发布链接到我的页面,因为它是客户端和私人服务器,但我很感激您的任何见解。

由于

1 个答案:

答案 0 :(得分:0)

通常我在点击提交时就解决了,

问题在于我的开始功能。

每当间隔运行而不是一次并循环时,我就会得到div的数组。

将窗口选择移出窗口.interval修复了问题。