我有以下代码将 div 放在一个圆圈周围。但是,我想旋转圆圈以从圆圈顶部更改 div 的顺序。
function drawCircle(selector, center, radius, angle, x, y)
{
var total = $(selector).length;
var alpha = Math.PI * 2 / total;
$(selector).each(function(index)
{
var theta = alpha * index;
var pointx = Math.floor(Math.cos( theta ) * radius);
var pointy = Math.floor(Math.sin( theta ) * radius );
$(this).css('margin-left', pointx + x + 'px');
$(this).css('margin-top', pointy + y + 'px');
});
}
$(document).ready(function()
{
drawCircle('.box', 0, 250, 0, 500, 500);
});