js实现背景图自适应窗口大小

Valonia ·
更新时间:2024-11-10
· 728 次阅读

话不多说,请看代码

<script type="text/javascript"> window.onresize = window.onload = function() { var w,bgImg; if(!!(window.attachEvent && !window.opera)) { w = document.documentElement.clientWidth; } else { w = window.innerWidth; }if(w>1650){ document.getElementById ('msg').value ='窗口大小:' + 'width:' + w; bgImg = document.getElementById('bg').getElementsByTagName('img')[0]; bgImg.width = (w - 5); }else{ document.getElementById ('msg').value ='窗口大小:' + 'width:' + w; bgImg = document.getElementById('bg').getElementsByTagName('img')[0]; bgImg.width = 1650; } } </script>



js实现 背景图自适应 背景图 自适应 js

需要 登录 后方可回复, 如果你还没有账号请 注册新账号