2 人のアスリートが互いにレースをしているシミュレーションを実行したいと考えています。3 つのスプリット タイムと 2 つのトランジション タイムがあります。
したがって、レースは次のようになります: スプリット 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) がすべてのスプリットで動作しているよりも速い場合。しかし、上記の例では、Athlet 2 は最初のスプリットで速く、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
ありがとう