运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #main { width: 270px; height: 300px; border: 1px solid black; display: flex; } #main div { flex: 1; } #myBlueDiv { animation: mymove 5s infinite; } @keyframes mymove { 50% {flex: 3;} } </style> </head> <body> <h1>Animation of flex</h1> <p>Gradually change the flex property of the BLUE div element from 1 to 3, and back:<p> <div id="main"> <div style="background-color:coral;">RED</div> <div style="background-color:lightblue;" id="myBlueDiv">BLUE</div> <div style="background-color:lightgreen;">GREEN</div> </div> </body> </html>