<head> <title>無標題文檔</title> <style> body{height:400px;border:1px solid #000;} .box{width:100px;height:100px;background:red;margin:100px auto 0; transition:2s;} body:hover .box{ -webkit-transform:rotate(360deg);} </style> </head> <body> <div class="box">111</div> </body>
<head> <title>無標題文檔</title> <style> body{height:400px;border:1px solid #000;} .box{width:100px;height:100px;background:Red;margin:100px auto 0; transition:2s;} body:hover .box{ -webkit-transform:skewX(45deg);} </style> </head> <body> <div class="box">111</div> </body>
<head> <title>無標題文檔</title> <style> body{height:400px;border:1px solid #000;} .box{width:100px;height:100px;background:Red;margin:100px auto 0; transition:2s;} body:hover .box{ -webkit-transform:scale(2);} </style> </head> <body> <div class="box">111</div> </body>
<head> <title>無標題文檔</title> <style> body{height:400px;border:1px solid #000;} .box{width:100px;height:100px;background:Red;margin:100px auto 0; transition:2s;} body:hover .box{ -webkit-transform:translate(-100px,200px);} </style> </head> <body> <div class="box">111</div> </body>