在jQuery中创建自己的效果,slideLeft()slideRight()尝试制作slideLRtoggle(),但失败了

时间:2019-07-18 02:11:19

标签: jquery

我制作了slideLeft()和slideRight(),但无法在它们之间制作slideLRtoggle()。

$.fn.slideLeft = function (speed) { // slideLeft

    $(this).animate({width: '0%'}, speed, function () { $(this).hide(); });

    return $(this);
};
$.fn.slideRight = function (widthValue, speed) { // slideRight

    $(this).show().animate({width: widthValue}, speed);

    return $(this);
};
$.fn.slideLRtoggle = function () {

};

0 个答案:

没有答案