使用CSS来实现多个对象围绕圆形旋转具有挑战性。以下是如何解决此问题的最佳方法:
使用jQuery
jQuery提供了一个简单的解决方案,可以旋转任意数量的外层元素。以下是使用jQuery实现的代码:
var radius = 100; // 调整以移动对象进出 var fields = $('.item'), container = $('#container'), width = container.width(), height = container.height(); var angle = 0, step = (2 * Math.PI) / fields.length; fields.each(function() { var x = Math.round(width / 2 + radius * Math.cos(angle) - $(this).width() / 2); var y = Math.round(height / 2 + radius * Math.sin(angle) - $(this).height() / 2); if (window.console) { console.log($(this).text(), x, y); } $(this).css({ left: x + 'px', top: y + 'px' }); angle += step; });
使用CSS动画
body { padding: 2em; } #container { width: 200px; height: 200px; margin: 10px auto; border: 1px solid #000; position: relative; border-radius: 50%; animation: spin 10s linear infinite; } .item { width: 30px; height: 30px; line-height: 30px; text-align: center; border-radius: 50%; position: absolute; background: #f00; animation: spin 10s linear infinite reverse; } @keyframes spin { 100% { transform: rotate(1turn); } }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <div>
以上是如何使用 CSS 和 jQuery 创建圆形旋转对象动画?的详细内容。更多信息请关注PHP中文网其他相关文章!