2
DIV内に浮動RANDOM要素があり、LEFTとTOPの位置が親<div class="main"></div>
の中にあります。数学的にはJavaScript/jQueryの中でLEFTとTOP位置を計算し、設定するにはどのように任意のランダムな要素は、境界定義された親親div内の要素のランダムな位置
HTMLを超えて行くことはありません。
<div class="main"></div>
Javascriptを:
for (var i = 0; i < 5; i++) {
$('.main').append('<div class="box"></div>');
}
$('.box').each(function(index) {
$(this).css({
left : ((Math.random() * $('.main').width())),
top : ((Math.random() * $('.main').height()))
});
});
例:https://jsfiddle.net/iahmadraza/u5y1zthv/
ありがとうございます
あなたは幅/高さの量を削除する必要があります要素自体の left:(Math.random()*($( '。main')。width() - $(this).width())))、 top:((Math.random()* ( ')')。 – Roy
['function getRnd(min、max)'](https://stackoverflow.com/questions/1527803/generating-random-main) 'min = 0'と' max =(main.width - box.width) 'でjavascript-in-a-specific-rangeで全体番号を指定します。 – Andreas