6

我正在使用jQuery的slidetoggle,我想知道是否有一种方法可以让它从底部向上滑动,无论我在哪里似乎都找不到答案,这是我正在使用的代码:

jQuery(document).ready(function(){ 
    jQuery(".product-pic").hover(function(){
        jQuery(this).find('.grid-add-cart').slideToggle('2000', "easeOutBack", function() {
            // Animation complete.
        });
    });
});
4

4 回答 4

11

你想实现这样的目标吗?

HTML

<div id="box">
    <div id="panel">
    </div>
</div>​

CSS

#box
{
    height: 100px;
    width:200px;
    position:relative;
    border: 1px solid #000;
}
#panel
{
    position:absolute;
    bottom:0px;
    width:200px;
    height:20px;
    border: 1px solid red;
    display:none;
}

JS

$("#box").hover(function(){
    $("#panel").slideToggle();
}, function(){
    $("#panel").slideToggle();
});​

或根据Roko建议的更新

var panelH = $('#panel').innerHeight();

$("#box").hover(function(){
    $("#panel").stop(1).show().height(0).animate({height: panelH},500);
}, function(){
    $("#panel").stop(1).animate({height: 0},500, function(){
      $(this).hide();  
    });
});​
于 2012-05-11T18:25:46.363 回答
10

您可以通过在要切换的元素上使用包装器来做到这一点。将包装器的位置设置为相对,将元素的位置设置为绝对,并将底部属性设置为零。

就像这个jsFiddle 示例一样。

jQuery:

$("button").click(function() {
    $("p").slideToggle("slow");
});​

CSS:

p { 
    position:absolute;
    bottom:0;
    display:none;
    padding:0;
    margin:0;
}

div {
    position:relative;
    width:300px;
    height:100px;
}
于 2012-05-11T18:29:12.117 回答
3

现场演示

jQuery(function($){

  $(".product-pic").hover(function( e ){
    var px  = e.type=="mouseenter"? 0 : 220 ;
    $(this).find('.grid-add-cart').stop().animate({top:px});
  });
});
于 2012-05-11T18:30:26.680 回答
0

最简单的方法是为此使用 jQuery UI,单独的 jQuery 没有单独的功能。见这里这里

另一种方法是使用animate函数制作 CSS 动画。

于 2012-05-11T18:19:41.097 回答