Leonardo Sotelo

Generation

generate functionWed, 14 Jun 2023

funtion that generate a red div that rotate constantly

function styles(x, y) { return ( `.div { color: red; position: absolute; left: ${x}px; top: ${y}px; animation: spin-rotate 1s linear infinite; } @keyframes spin-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } ` ) }

Javascript
Generate More

Want to kickstart your project?Use the new AI Studio to create your code