向左或向右滑动,从左上角滑动等等

时间:2013-06-23 08:28:04

标签: jquery

  

jQuery中有slideUp(),slideDown()和slideToggle()函数。但是为什么不添加slideLeft(),slideRight(),slideTopLeftCorner(),slideTopRightCorner()等函数呢?无论如何都要做我的假设。

1 个答案:

答案 0 :(得分:1)

您可以这样使用:

$(this).hide("slide", { direction: "left" }, 1000);
$(this).show("slide", { direction: "left" }, 1000);

Here is duplicate

here is through plugins

从右下角到左上角试试。 换句话说 - 您可以在功能中更改选项marginLeft和marginTop。

jQuery.fn.blindLeftTopOut = function (duration, easing, complete) {
    return this.animate({
        marginLeft: -this.outerWidth(),
        marginTop:  -this.outerHeight()
    }, jQuery.speed(duration, easing, complete));
};
$(element).blindLeftTopOut();