运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
转到 Spaces
<!DOCTYPE html> <html> <head> <style> #myDIV { background-color: lightblue; border: 1px solid black; animation: mymove 5s infinite; } @keyframes mymove { 50% {padding: 50px;} } </style> </head> <body> <h1>Animation of padding</h1> <p>Gradually change the padding from 0px to 50px, and back to 0px:<p> <div id="myDIV"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat... </div> </body> </html>