我正在尝试制作一个其中包含随机生成的单词的页面,以响应方式运行。
<head>
<style type='text/css'>
.box {
height: auto;
position: absolute;
width: auto;
}
</style>
<script type='text/javascript'>
function setDivPos() {
for (i=1; i<=2; i++) {
var x = Math.floor(Math.random()*1130);
var y = Math.floor(Math.random()*722);
document.getElementById('div'+i).style.left = x + 'px';
document.getElementById('div'+i).style.top = y + 'px';
}
</head>
<body onload='setDivPos();'>
<div id='div1' class='box'>ARCHIVE</div>
<div id='div2' class='box'>PERSPECTIVE</div>
</div>
</body>
整个网站几乎都基于这个算法。如何使这些随机定位的对象在 1130x722 区域内放置在每个用户的屏幕尺寸内。(响应)