執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!Doctype html> <html> <style> #myContainer { width: 400px; height: 400px; position: relative; background: yellow; } #myAnimation { width: 50px; height: 50px; position: absolute; background: red; } </style> <body> <h1>My First JavaScript Animation</h1> <div id="myContainer"> <div id="myAnimation"></div> </div> </body> </html>