|
カテゴリ:css
1秒間で位置、サイズ、色が変化します。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>keyframes</title> <style> .box { position: relative; top:200px; left:300px; width: 50px; height: 50px; background-color: rgb(132, 0, 255); animation-name: slidebox; animation: slidebox 1s linear infinite; } @keyframes slidebox { 0% { width: 50px; height: 50px; transform: translate(0px,0px); background-color: rgb(132, 0, 255); } 30% { width: 200px; height: 200px; transform: translate(100px,0px); background-color: rgb(255, 0, 0); } 50% { width: 100px; height: 100px; transform: translate(100px,100px); background-color: rgb(0, 255, 13); } 80% { width: 300px; height: 300px; transform: translate(0px,100px); background-color: rgb(68, 0, 255); } 100% { width: 50px; height: 50px; transform: translate(0px,0px); background-color: rgb(132, 0, 255); } } </style> </head> <body> <div class="box"></div> </body> </html> お気に入りの記事を「いいね!」で応援しよう
最終更新日
2024.08.02 09:22:51
コメント(0) | コメントを書く
[css] カテゴリの最新記事
|
|