我正在尝试根据对象当前是否正在设置动画来更改动画的标题。例如,当 mario 为用户点击制作动画时,它应该显示“他正在行走”,一旦他到达目的地,它应该显示“他正在站立”。根据我从 jQuery API 文档中了解到的情况,完整的属性应该解决这个问题。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>title</title>
<link rel="stylesheet" type="text/css" href="css/stage.css" />
<script src="jslibs/jquery-1.10.2.min.js"></script>
<script>
$(document).ready(function () {
$("#stage").click(function (event) {
var offset = $(this).offset();
var x = event.pageX - offset.left;
var y = event.pageY - offset.top;
$("#header").html("<h1>Mario is walking!</h1>");
$("#player").animate({
top: y,
left: x,
duration: 3,
complete: function () {
$("#header").html("<h1>Mario is standing still...</h1>");
}
});
});
});
</script>
</head>
<body>
<div id="header">
<h1>Mario is standing still...</h1>
</div>
<div id="stage">
<img id="player" src="images/mario.gif" alt="Mario" />
</div>
</body>
</html>
这些更改正常工作。当持续时间与选项分组时,它不会被识别。这可以正确调试。
$( "#player" ).animate({
top: y,
left: x,
duration: 3
},{
complete: function(){
$( "#header" ).html( "<h1>Mario is standing still...</h1>" );
}
});