我有一个大圆圈,里面有较小的圆圈,使用two.js 制作。
我的问题是这两个不是在自己的位置而是在左上轴旋转。
我希望这组圆圈 ( circlesGroup
) 仅在静态位置的大圆圈内旋转。和circlesGroup
大圆组合在一起为rotatoGroup
。
two.bind('update', function(frameCount, timeDelta) {
circlesGroup.rotation = frameCount / 120;
});
two.bind('update', function(frameCount, timeDelta) {
rotatoGroup.rotation = frameCount / 60;
});
整个代码在CodePen中。