<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!--<SCRIPT type="text/javascript" src="jquery-1.8.3.min.js"></SCRIPT>-->
<SCRIPT type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></SCRIPT>
<style type="text/css">
#content {
border:0px solid #ff9999;
width:0px;
height:0px;
padding:3px;
}
</style>
</head>
<body>
<input id="btn" type="button" value="Animate"/>
<div id="content"></div>
</body>
<script>
$(document).ready(function(){
$('#btn').click(function(){
$('#content')
.animate({
"borderLeftWidth":"1px",
"height":"400px"
},1000)
.animate({
"borderBottomWidth":"1px",
"width":"400px"
},1000)
.animate({"borderRightWidth":"1px"
},1000)
.animate({"borderTopWidth":"1px"
},1000)
});
});
</script>
</html>
我正在尝试通过使用 jQuery 的动画功能来做一些有用的事情。因此,如果您运行我的代码,您会看到border-left 和border-bottom 是连续生成的,因为我也在增加宽度和高度。但是在那个border-right和border-top之后就会弹出。我希望它们动画为左边框和下边框。我该怎么做?