如何在slideDown后展开垂直滚动?

时间:2012-03-05 06:28:02

标签: javascript jquery

    $(document).ready(function() {

 // hides the slickbox as soon as the DOM is ready
  $('#content').hide();

 // toggles the content when you click the right link  
  $('#togglebutton').click(function() {
    if ( $(this).hasClass("active"))
    {
        $('#content').slideDown(200);
        $(this).removeClass("active");
        $("#toggleimg").attr("src", "images/less.png"); //swap the image

    var destination = $("#bottombar").offset().top;
    //alert(destination);
    //$("html,body").animate({ scrollTop: destination},"slow");
    $('html, body').delay('200').animate({
    scrollTop: $('#bottombar').offset().top + 111
    }, 200);



    } else {
        $(this).addClass("active");
        $("#toggleimg").attr("src", "images/more.png"); //swap the image
        $('#content').slideUp(200);
    }
    event.preventDefault();
    return false;
  });
});

您可以在此处查看www.graysonearle.com/Lumarca 我已经试了几个小时才能让这个工作...... 我只是希望浏览器窗口允许用户在div滑落后滚动。

0 个答案:

没有答案