要实现上图中div的自适应Js代码如下:
var screenWidth = window.screen.width;
if(screenWidth <= 1200){
headerDiv.style.width = "1200px";
}else{
headerDiv.style.width = "auto";
}
以上仅供参考。
要实现上图中div的自适应Js代码如下:
var screenWidth = window.screen.width;
if(screenWidth <= 1200){
headerDiv.style.width = "1200px";
}else{
headerDiv.style.width = "auto";
}
以上仅供参考。