我有一个包含两个div
元素的 HTML 页面。一个是红色的,另一个是蓝色的。红色的在左上角,蓝色的在右上角。我有一个“点击我”链接,当点击它时,它应该是动画的。两个盒子都应该向下移动。它没有发生。有人能告诉我为什么吗?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd"
>
<html lang="en">
<head>
<title>Test</title>
<script src="jquery-1.7.2.min.js" type="text/javascript"></script>
<style type="text/css">
#box{
background:red;
width: 300px;
height: 300px;
float: left;
position: relative;
}
#box1{
background: blue;
width: 300px;
height:300px;
float: right;
position: relative;
}
a{
position:absolute;
top: 310px;
left: 550px;
}
</style>
<script type="text/javascript">
$(function(){
$('a').click(function(){
$('#box').animate(function(){bottom : "0px";}, 2000);
$('#box1').animate(function(){bottom : "0px";}, 2000);
})
});
</script>
</head>
<body>
<div id="box" ></div>
<div id="box1"></div>
<br>
<a href="#">Click Me!</a>
</body>
</html>