我正在尝试制作横幅。横幅由宽度和高度的百分比组成。加载主体后,它在所有分辨率下都应该看起来不错。但是,我的代码似乎不起作用。如果有人可以看看它,将不胜感激。
<script>
function load()
{
document.write("Available Width: " + Math.round((screen.availWidth)/5));
a=document.getElementById('banner');
a.style.width=Math.round((screen.availWidth));
a.style.height=Math.round((screen.availHeight)/5);
}
</script>