我正在尝试制作一个 div 节目,然后增长到适当的大小。到目前为止,这是我的代码:
$(document).ready(function() {
$('#enlarge').css("visibility", "visible").animate({
height:681, width:467
}, 1000, "linear", function(){alert("all done");});
});
我的 HTML 很简单:
<div id="enlarge"><span>content here</span></div>
我的 CSS 更简单:
#enlarge {
height:0px;
width:0px;
background: url(../img/enlarge.png)no-repeat;
z-index: 3;
position:absolute;
top:-50px;
left:250px;
visibility: hidden;
}