我在屏幕上随机放置了一些div容器。
$(".container").each( function(index) {
var rNum = Math.floor(Math.random() * 10) - 5;
var x = Math.floor(Math.random()*400);
var y = Math.floor(Math.random()*400);
$(this).css( {
'-webkit-transform': 'rotate('+rNum+'deg)',
'-moz-transform': 'rotate('+rNum+'deg)',
'top': y,
'left': x
} ).delay(200 * index).fadeIn(200);
} );
现在我想随机旋转此容器的背景图像(不是内容)0°,90°,180°或270°。我怎样才能在代码中实现它?