【发布时间】:2014-10-08 21:30:14
【问题描述】:
我有一个简单的代码,可以从中心水平和垂直扩展一个 div, 但它只扩展到左侧或底部,我希望它从中心扩展到两侧(left=50px,right=50px)或(top=50px,bottom=50px),总计等于100px。 这里是代码:
<!DOCTYPE html>
<html>
<head>
<style>
div {
background-color:#bca;
background: #fff;
position: absolute;
top: 50%;
left: 50%;
background-repeat: no-repeat;
background-position: center center;
border:1px solid green;
padding:10px;
}
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<button id="go">» Run</button>
<div id="block">Hello!</div>
<script>
$("#go").click(function(){
$("#block").animate({
width: "100px",
height: "100px",
opacity: 0.6,
}, 1500 );
});
</script>
</body>
谢谢。
【问题讨论】:
标签: css animation center expand