在以下示例中,我尝试将缓动 ( easeInCubic
) 添加到 jQuery 动画,但它没有任何效果。为什么?
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("div").animate({ left: 200 }, 'slow', 'easeInCubic');
});
});
</script>
</head>
<body>
<button>Start Animation</button>
<div style="background:#98bf21;height:100px;width:100px;position:absolute;"></div>
</body>
</html>