Webサイトのボタンメニューを実行しようとしていますが、マウスホバーでの画像の位置に問題があります。これは私がこれまでに作成したものですhttp://jsfiddle.net/tNLUx/
マウスオーバー時に、選択した画像を拡大し、他の画像を最初の画像と同じ位置に維持したい...下の画像を上に移動するのではなく、上に移動および下に移動するにはどうすればよいですか?
#btnSocial {
width:100px;
position: relative;
opacity: 0.5;
-webkit-opacity: 0.5;
-moz-opacity: 0.5;
transition: 0.5s ease;
-webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
}
#btnSocial:hover{
width: 150px;
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
<img src="http://img24.imageshack.us/img24/3221/32845401.png" alt="img1" id="btnSocial" class="social1" />
<img src="http://img24.imageshack.us/img24/3221/32845401.png" alt="img1" id="btnSocial" class="social2"/>
<img src="http://img24.imageshack.us/img24/3221/32845401.png" alt="img1" id="btnSocial" class="social3"/>
<img src="http://img24.imageshack.us/img24/3221/32845401.png" alt="img1" id="btnSocial" class="social4"/>