|
カテゴリ:css
<!DOCTYPE html> <head> <title>opacity</title> <style> #name{ font-size: 20px; color: rgb(255, 0, 13); } .paper0{ position: absolute; top:100px; left:100px; width: 200px; height: 300px; animation: paper0 3s 0s linear infinite; } @keyframes paper0 { 0% { opacity: 0%; } 50% { opacity: 100%; } 100% { opacity: 0%; } } .paper1{ position: absolute; top:100px; left:100px; width: 200px; height: 300px; animation: paper1 3s 0s linear infinite; } @keyframes paper1 { 0% { opacity: 100%; } 50% { opacity: 0%; } 100% { opacity: 100%; } } </style> </head> <body> <p id="name">より滑らかに</p> <div class="paper0"> <img id="pic" src="8.jpg" width=400px> </div> <div class="paper1"> <img id="pic" src="9.jpg" width=400px> </div> </body> </html> お気に入りの記事を「いいね!」で応援しよう
最終更新日
2024.08.26 08:54:19
コメント(0) | コメントを書く
[css] カテゴリの最新記事
|
|