我正在使用jQuery的slidetoggle,我想知道是否有一种方法可以让它从底部向上滑动,无论我在哪里似乎都找不到答案,这是我正在使用的代码:
jQuery(document).ready(function(){
jQuery(".product-pic").hover(function(){
jQuery(this).find('.grid-add-cart').slideToggle('2000', "easeOutBack", function() {
// Animation complete.
});
});
});