下面我有我的div的代碼固定在頁面的右側,但是我完全不知道如何使其可擴展,所以當它點擊它打開直至聯繫表單。我也想要它戳出一小部分,並閱讀免費報價!在瀏覽器窗口右側的可擴展固定div
HTML
<div id="slidingpanel"></div>
CSS
#slidingpanel {
position: fixed;
width: 30px;
height: 200px;
z-index: 1;
right: 0px;
}
下面我有我的div的代碼固定在頁面的右側,但是我完全不知道如何使其可擴展,所以當它點擊它打開直至聯繫表單。我也想要它戳出一小部分,並閱讀免費報價!在瀏覽器窗口右側的可擴展固定div
HTML
<div id="slidingpanel"></div>
CSS
#slidingpanel {
position: fixed;
width: 30px;
height: 200px;
z-index: 1;
right: 0px;
}
你不能只是使用animate
?
$("#slidingpanel").on("click",function(e){
e.preventDefault();
$(this).animate({
width: 200
},100);
})
你好,你可以告訴我這一點,因爲我已經嘗試過沒有喜悅:) – user3588919
點擊小提琴。當你點擊元素時,它將展開。 – Johnston
爲什麼downvote? – Johnston
http://stackoverflow.com/questions/10781620/toggle-width-with-jquery您可以輕鬆地回答修改代碼。 – sinisake