我试图将我所有随机定位的图像包含在它的 100% 环绕中,图像在页面加载时随机定位,但是当我将环绕设置为溢出时:隐藏了一些图像被切断。是否可以在包装中包含所有图像同时也不重叠图像?
这是一个 jsfiddle:http: //jsfiddle.net/mdxZL/2/
HTML:
<div id="wrap" style="width: 100%; height: auto; position: absolute; left: 0; top: 0; overflow: hidden;">
<div id="images">
<img src="http://placekitten.com/200/200" />
<img src="http://placekitten.com/200/200" />
<img src="http://placekitten.com/200/200" />
<img src="http://placekitten.com/200/200" />
<img src="http://placekitten.com/200/200" />
</div>
</div>
CSS:
#images
{
left: 0; top: 0;
width: 100%;
}
#images img
{
padding: 10px;
position:relative;
}
jQuery:
$(document).ready(function(){
$("#images img").each(
function(intIndex) {
var l = Math.floor(Math.random() * $("#images").width());
var t = Math.floor(Math.random() * $("#images").height());
$(this).css("margin-left", l);
$(this).css("margin-top", t);
}
);
});