我正在嘗試完成一個僅靠CSS處理的定位方案。我可以用JavaScript輕鬆地做到這一點,使用類似於:在調整窗口大小時,可以使用JavaScript重新定位元素嗎?
function onWindowResize(new_width,new_height){
$('#element')
.css({ left: some_function(new_width),
top: another_function(new_height) });
};
可以使用該方法嗎?什麼是可能的缺點?
媒體查詢不可能嗎? – banzomaikaka
確保調整調整大小事件,以便在調整大小時不會執行數十萬次的昂貴操作:http://stackoverflow.com/questions/5489946/jquery-how-to-wait-for-the -end-or-resize-event-and-only-than-perform-action –
好的建議,謝謝。 – MaiaVictor