1

我有 5 个 div 分层,前景中有一个对象,我想在它们之间移动。这是使用视差效应。我已经成功地使用 jQuery 中的基本 .animate 移动对象。

我遇到的问题是让背景 div 正确设置动画 - 或者根本没有。当我点击我的触发器 div 时会发生什么 - div.cloud1 和 div.cloud2 在我的对象之前移动。尽管我使用时间值,它们也会改变位置。

div 中的所有对象都是绝对定位的 - div 是相对的,以便能够使用 z-index。

具体来说,我试图以不同的速度移动 div.cloud1、div.cloud2、div.ground、div.Mountain,因此它给人一种 3d 的错觉。

我发送的对象是一个不同的 div。

我不确定问题是什么。

这是我的 JSfiddle:http: //jsfiddle.net/U6Mu6/

 jQuery(document).ready(function () {
    jQuery('#cloud-01').css({
        backgroundPosition: '50 -180px'
    });
    jQuery('#cloud-02').css({
        backgroundPosition: '0 -100px'
    });
    jQuery('#mountains-03').css({
        backgroundPosition: '0 50px'
    });
    jQuery('#trees-04').css({
        backgroundPosition: '0 50px'
    });
    jQuery('#ground').css({
        backgroundPosition: 'left bottom'
    });
    jQuery('#branding').css({
        backgroundPosition: 'center 0'
    });
    jQuery('#content').css({
        backgroundPosition: 'center 0'
    });
    jQuery('#sec-content').css({
        backgroundPosition: 'center 0'
    });
    jQuery('#footer').css({
        backgroundPosition: 'center 0'
    });
    jQuery('#wrapper').css({
        overflow: "hidden"
    });

    jQuery('#klicker').click(function () {
        jQuery('#cloud-01').animate({
            backgroundPosition: '(-100px -10px)'
        }, 200000);
        jQuery('#cloud-02').animate({
            backgroundPosition: '(-400px 0px)'
        }, 20000);
        jQuery('#mountains-03').animate({
            backgroundPosition: '(-2500px 50px)'
        }, 20000);
        jQuery('#ground').animate({
            backgroundPosition: '(-5000px bottom)'
        }, 20000);

        startHim();

        jQuery("#full-robot").animate({
            left: "50%",
            marginLeft: "-150px"
        }, 2000);
        setTimeout("leaveScreen()", 15000);
    });

});

var num = 1;

function startHim() {
    num++;
    jQuery("#sec-content").animate({
        top: "-=5px"
    }, 150).animate({
        top: "+=5px"
    }, 150);
    jQuery("#content,#branding").animate({
        top: "-=" + num + "px"
    }, 150).animate({
        top: "+=" + num + "px"
    }, 150);
    if (num < 4) {
        setTimeout("startHim()", 300);
    } else {
        setTimeout("bounceHim()", 300);
    }
}

function bounceHim() {
    jQuery("#sec-content,#branding").animate({
        top: "-=4px"
    }, 150).animate({
        top: "+=4px"
    }, 150);
    jQuery("#content").animate({
        top: "-=8px"
    }, 150).animate({
        top: "+=8px"
    }, 150);
    setTimeout("bounceHim()", 300);
}

function leaveScreen() {
    jQuery("#full-robot").animate({
        left: "100%",
        marginLeft: "0px"
    }, 2000);
}

仅供参考 - 小提琴中的某些对象不是故意包含的。我只是想让事情先工作。

我确实在 JSFIDDLE 中看到了一个错误,处理我的 setTime 表达式上的隐含 eval。但我不知道如何解决它。我想我可以将 div 作为函数传递并使用 .hide 代替。

欢迎所有帮助谢谢!

编辑:::

我忘了这个:

/**
* v. 1.02
*/
(function($) {
$.extend($.fx.step,{
'background-position': function(fx) {
if (fx.state === 0 && typeof fx.end == 'string') {
var start = $.curCSS(fx.elem,'background-position');
start = toArray(start);
fx.start = [start[0],start[2]];
var end = toArray(fx.end);
fx.end = [end[0],end[2]];
fx.unit = [end[1],end[3]];
}
var nowPosX = [];
nowPosX[0] = ((fx.end[0] - fx.start[0]) * fx.pos) + fx.start[0] + fx.unit[0];
nowPosX[1] = ((fx.end[1] - fx.start[1]) * fx.pos) + fx.start[1] + fx.unit[1];
fx.elem.style.backgroundPosition = nowPosX[0]+' '+nowPosX[1];
function toArray(strg){
strg = strg.replace(/left|top/g,'0px');
strg = strg.replace(/right|bottom/g,'100%');
strg = strg.replace(/([0-9\.]+)(\s|\)|$)/g,"$1px$2");
var res = strg.match(/(-?[0-9\.]+)(px|\%|em|pt)\s(-?[0-9\.]+)(px|\%|em|pt)/);
return [parseFloat(res[1],10),res[2],parseFloat(res[3],10),res[4]];
}
}
});

})(jQuery);// JavaScript 文档

4

1 回答 1

1

我不知道这是否太明显了,但你试图"background-position"通过使用来设置云的属性backgroundPosition

您可能只是将它们更改为

$("#cloud-01").css({'background-position': '50px -180px'})

注意background-position代替backgroundPosition

如果你想错开每朵云移动的时间,你需要抵消你的动画持续时间,比如

    $('#cloud-01').animate({
        'background-position' : '(-100px -10px)'
    }, (1000) ); // 1 second duration
    $('#cloud-02').animate({
        'background-position' : '(-400px 0px)'
    }, (2000) ); // 2 seconds
    $('#mountains-03').animate({
        'background-position' : '(-2500px 50px)'
    }, (2000) ); // 3 seconds
于 2013-08-27T19:05:11.133 回答