慕田峪9158850
1234567891011121314151617181920212223242526272829303132333435363738394041<html><head> <style type="text/css"> .scale { width:200px; height:200px; background-color: #06f; top:180px; left:180px; position: relative; } .scale:hover { animation:scale 2s linear; } @keyframes scale { 0% { transform: scale(1); } 25% { transform: scale(1.5); } 50% { transform:scale(2); } 75% { transform: scale(1.5); } 100% { transform: scale(1); } } </style></head><body><div class = "scale" /> </div> </body></html>