Html Css Pattern Simple Example CSS Cord Copy Cord <style> @keyframes roundandround { to { transform: rotateX(360deg) rotateY(360deg); } } @keyframes show { to { opacity: 1; } } body { background-color: #000000; } .scene { width: 600px; height: 600px; margin: 2% auto; perspective: 1000px; } .wrapper { width: 100%; height: 100%; transform: rotateX(45deg) rotateY(45deg); transform-style: preserve-3d; } .ball { position: relative; width: 70%; height: 70%; margin: 0 auto; transform-style: preserve-3d; animation: roundandround 7.5s 1.3s infinite linear; } .ball .ring { position: absolute; to…