IntelligentRecognition/ah-jjsp-web/.svn/pristine/2f/2fe96943be1aedfad48c48f4dc8...

22 lines
633 B
Plaintext
Raw Normal View History

2024-05-24 16:09:40 +08:00
jQuery.fn.extend({
slideRightShow: function () {
return this.each(function () {
$(this).show('slide', {direction: 'right'}, 500);
});
},
slideLeftHide: function () {
return this.each(function () {
$(this).hide('slide', {direction: 'left'}, 500);
});
},
slideRightHide: function () {
return this.each(function () {
$(this).hide('slide', {direction: 'right'}, 500);
});
},
slideLeftShow: function () {
return this.each(function () {
$(this).show('slide', {direction: 'left'}, 500);
});
}
});