我有一个画廊,它在每个页面加载时随机放置在.container中。
我的问题是有时加载页面时图像重叠。还有图像不在.container内
JS 很简单:
$(document).ready(function() {
$('.picture').each(function(i) {
$pT=$(this).height();
$pL=$(this).width();
$(this).css({
top:Math.floor(Math.random()*$pT)*i*2,
left:Math.floor(Math.random()*$pL)*i*2
});
});
});
我在网上寻找一种 jquery 解决方案来防止图像重叠,但我找不到适合我的特殊性的解决方案。如果您只是看看我的问题并分享您的一些科学知识,我将非常感激。谢谢!