0

我试图在按下按钮时放大和缩小照片,但是我无法让代码正常工作我相信这是我构建缩小部分的方式代码。

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>
4

1 回答 1

1

基于您想要一个按钮来执行此操作的事实:

$("#zoom").button().click(function () {
    var options = { height: "365", width: "269", paddingRight: "12"};
    var myImage = $("#myImage");
    if (myImage.hasClass("zoomed"))
    {
        options = {height: "265", width: "169"};
    }

    myImage.stop().animate(options,"fast");
    myImage.toggleClass("zoomed");
});​

更新小提琴:http: //jsfiddle.net/johnkoer/NhYtL/19/

于 2012-08-10T15:42:51.983 回答