ボタンが押されたときに写真をズームインおよびズームアウトしようとしていますが、コードを適切に機能させることができません。コード。
jQuery コード:
$(".enlarge-photo").click(function(){
//photo - zoom-in
var $img = $(".image");
$img.stop().animate({
height: "365",
width: "269",
paddingRight: "12"},"fast");
},function(){
$img.stop().animate({
height: "265",
width: "169",
paddingRight: "0"},"fast");
});
これは私が使用しているHTMLです:
<figure>
<img class="image" src="img/basketball.jpg" width="169" height="265" border="0" alt="basketball dunk"/>
<figcaption>Laura Skelding/AMERICAN-STATESMAN</figcaption>
</figure>
<ul id="photo">
<li rel="nofollow"><a class="enlarge-photo" href="#" title="enlarge-photo">ENLARGE PHOTO</a></li>
</ul>