我做了一個div寬度100%和高度寬度* .1在jquery中。準確的數字。高度
我設法擴大高度,儘管比例但我無法設法擴大它準確。
我其實想把它擴大到400px,可能嗎?
這裏是我的代碼:http://jsfiddle.net/2drYk/3/
*
{
margin:0;
padding:0;
border:0
}
.container
{
width:100%;
background:black;
}
<figure class="container">
</figure>
$('.container').height($(this).width()*0.1);
var toggleCheck =0;
$('.container').click(function(){
if(toggleCheck ==1){
$(this).stop().animate({height: ($(this).height()-$(this).width()*0.1)});
toggleCheck = 0;
}else{
$(this).stop().animate({height: ($(this).width()*0.1 + $(this).height())});
toggleCheck = 1;
}
});
我不明白:如果要擴大到400像素,爲什麼煩心事服用計算?可能我不明白你的問題? – Sunyatasattva
是[this](http://jsfiddle.net/2drYk/6/)你想要什麼? – pktangyue