我想做一个模拟两名运动员互相比赛。我有他们的三个分段时间和两个过渡时间。
所以,比赛将是:分段 1,转换 1,分段 2,转换 2,分段 3
我试着用这种方式模拟它:
$(window).load(function(){
jQuery("#box1").animate({ width: "100%" }, {duration: 100}).animate({ width: "100%" }, 10>).animate({ width: "100%" }, 1000%>).animate({ width: "100%" }, 100%>).animate({ width: "100%" }, 50);
jQuery("#box2").animate({ width: "100%" }, {duration: 50}).animate({ width: "100%" }, 10).animate({ width: "100%" }, 2000).animate({ width: "100%" }, 100).animate({ width: "100%" }, 500);
});
如果 Athlet 1 (box1) 在所有分段中的速度都比它工作得快。但在上面的例子中,运动员 2 应该在第一个分段中更快,在第二个分段中更慢。但这不起作用。
HTML 代码:
<div id="box1">Athlet 1</div>
<div id="box2">Athlet 2</div>
你能帮我么?
可以在此处找到德语示例:http ://www.trinews.at/trimag/index.asp?f=head2head&VID=703&athlet1=117252&athlet2=117256
谢谢