ホームページ > 記事 > ウェブフロントエンド > CSS3の拡大・回転サンプルコード
この記事は主にCSS3の拡大と回転のサンプルコードに関する詳細な分析を提供します。興味のある友人はそれを参照してください
CSS3の拡大と回転
<!DOCTYPE html> <html > <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>CSS3放大旋转</title> <style> .a{ transition:All 0.4s ease-in-out; -webkit-transition:All 0.4s ease-in-out; -moz-transition:All 0.4s ease-in-out; -o-transition:All 0.4s ease-in-out; width:200px; height:200px; background-color:#008000; display:block; margin:100px auto; color:#fff; text-align:center; line-height:200px; font-size:20px; font-weight:bold; } .a:hover { transform:rotate(360deg) scale(1.2); -webkit-transform:rotate(360deg) scale(1.2); -moz-transform:rotate(360deg) scale(1.2); -o-transform:rotate(360deg) scale(1.2); -ms-transform:rotate(360deg) scale(1.2); } </style> </head> <body> <a class="a">放大旋转</a> </body> </html>。
以上がCSS3の拡大・回転サンプルコードの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。