使用 CSS 绕圆旋转多个对象
在尝试创建多个对象绕圆旋转的动画时,遇到了只有一个物体旋转正确。本文旨在提供解决此问题的指导,以确保所有所需的对象围绕圆圈无缝旋转。
现有代码和实现
提供的代码涉及“outCircle”充当旋转中心的 div,在其中,嵌套的“旋转”div 包含要设置动画的对象。使用 CSS3 动画,“旋转”div 配置为围绕“outCircle”无限旋转。但是,尝试在“旋转”div 中添加其他对象会导致不良行为。
解决方案
要解决此问题,基于 JavaScript 的方法更合适用于处理多个对象旋转:
var radius = 100; // Adjust to place items closer or farther from the center var fields = $('.item'); // Target the objects to be rotated var container = $('#container'); // Parent div encasing the rotating objects var width = container.width(); var height = container.height(); var angle = 0; var step = (2 * Math.PI) / fields.length; // Calculate the angular separation between objects fields.each(function() { // Calculate the coordinates for each object based on its position in the circle 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 (console) { console.log($(this).text(), x, y); // Display coordinates for debugging } $(this).css({ left: x + 'px', // Set the left position top: y + 'px', // Set the top position }); // Increment the angle based on the spacing between objects angle += step; });
附加注意事项
此外,CSS3 可用于配置动画行为:
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; // Define the animation duration and direction } .item { width: 30px; height: 30px; line-height: 30px; text-align: center; border-radius: 50%; position: absolute; background: #f00; animation: spin 10s linear infinite reverse; // Reverse the animation for each object } @keyframes spin { 100% { transform: rotate(1turn); // Rotate the objects one full turn } }
示例
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <div>
此方法提供一个灵活且可扩展的解决方案,用于使用 CSS3 和 JavaScript 绕圆旋转任意数量的对象。
以上是如何使用 CSS 和 JavaScript 绕圆旋转多个对象?的详细内容。更多信息请关注PHP中文网其他相关文章!