私は現在、画像ギャラリーに取り組んでいます。Google Chromeを除いて、一番上の行にカーソルを合わせると、下の行が振動して動き始めます。ここで実用的な例を見つけることができます。
HTML:
<div id="gallery">
<a href="<?php echo'?img=$imgname';?>" >
<span c
lass="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
</div>
CSS
#gallery {
width: 100%;
margin-top: 100px;
padding-bottom: 100px;
display:block;
text-align:center;
}
#gallery a {
display: inline-block;
margin: 0 12.5px 25px 12.5px;
position: relative;
height:150px;
width:225px;
}
#gallery a img {
height:150px;
width:225px;
position:relative;
}
Jquery
$(document).ready(function() {
$("#gallery a img").hover(function(){
$(this).css({"z-index":"99"});
$(this).stop(true, false).animate({ "margin-left":"-112.5px",
"margin-top":"-150px",
"bottom":"-75px",
"height":"300px",
"width":"450px"
});
}, function() {
$(this).css({"z-index":"0"});
$(this).stop(true, false).animate({"height":"150px",
"width":"225px",
"margin-left":"0px",
"margin-top":"0px",
"bottom":"0px"
});
});
});
PSズームアウトすると、目立ちます。
助けてくれてありがとう。