css position プロパティをjQueryで.animateしたい。position : relative
position : absolute
div コンテナー内に小さな div があり、ボタンをクリックしてウィンドウに合わせてこの div を拡張したいと考えています。
HTML:
<div id="container"> <!-- div with position:relative -->
<div id="content"> <!-- i want to expand this div using position:absolute to extract it from the container and to give width and height 100% -->
<button id="full">Full</button>
<button id="collapse">Collapse</button>
</div>
</div>
私は試してみましjQuery().animate
たがうまくいきませんでしjQuery().css
た。
これは私がしたことです:
$(document).ready(function () {
$("#collapse").hide();
$("#full").bind("click", function (e) {
e.preventDefault();
$("#content").animate({
width: "1000px",
height:"1000px",
top:0,
left:0
}, 500).css({"overflow": "visible", "position":"absolute"});
$("#full").hide(100);
$("#collapse").show(100); // can i use $("#collapse").css("display","block"); ?
});
$("#collapse").bind("click", function (e) {
e.preventDefault();
$("#content").animate({
width: "400px",
height: "300px",
}, 500).css({"overflow": "visible", "position":"relative"});
$("#full").show(100);
$("#collapse").hide(100);
});
});
助けてくれてありがとう!
よろしくお願いします。