要素の上にカーソルを置いたときに要素のサイズ/ズームを拡大する最良の方法を知りたい: CSS または jQuery?
私はCSSトランジションでこのフィドルを作りましたが、それは私が望むことをしません.幅と高さは滑らかで比例してサイズ変更されません:
<div></div>
div{
width: 300px;
height: 300px;
background: #aa00aa;
-moz-transition: height 0.3s ease-in-out;
-webkit-transition: height 0.3s ease-in-out;
-o-transition: height 0.3s ease-in-out;
transition: height 0.3s ease-in-out;
-moz-transition: width 0.3s ease-in-out;
-webkit-transition: width 0.3s ease-in-out;
-o-transition: width 0.3s ease-in-out;
transition: width 0.3s ease-in-out;
}
div:hover{
background: #aa00aa;
height: 400px;
width: 400px;
}