jQuery中有slideUp(),slideDown()和slideToggle()函数。但是为什么不添加slideLeft(),slideRight(),slideTopLeftCorner(),slideTopRightCorner()等函数呢?无论如何都要做我的假设。
答案 0 :(得分:1)
您可以这样使用:
$(this).hide("slide", { direction: "left" }, 1000);
$(this).show("slide", { direction: "left" }, 1000);
从右下角到左上角试试。 换句话说 - 您可以在功能中更改选项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();