运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #myDIV { background-color: lightblue; border: 1px solid black; animation: mymove 5s infinite; } @keyframes mymove { 50% {padding-right: 150px;} } </style> </head> <body> <h1>Animation of padding-right</h1> <p>Gradually change the padding-right from 0px to 150px, 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>