jQuery自定义slide方向

jQuery官方动画库只提供了slide的向下开,向上关,明显不够用嘛。

so,找了找向左向右的代码。

jQuery.fn.extend({
slideRightShow: function() {
return this.each(function() {
$(this).show('slide', {direction: 'right'}, 1000);
});
},
slideLeftHide: function() {
return this.each(function() {
$(this).hide('slide', {direction: 'left'}, 1000);
});
},
slideRightHide: function() {
return this.each(function() {
$(this).hide('slide', {direction: 'right'}, 1000);
});
},
slideLeftShow: function() {
return this.each(function() {
$(this).show('slide', {direction: 'left'}, 1000);
});
}
});

上面的1000就是speed值,没有callback函数(也不能有),下面这个可以用"slow"等,不过向左向右只能有一种。

jQuery.fn.slideLeftHide = function( speed, callback ) { this.animate( { width: "hide", paddingLeft: "hide", paddingRight: "hide", marginLeft: "hide", marginRight: "hide" }, speed, callback ); }
jQuery.fn.slideLeftShow = function( speed, callback ) { this.animate( { width: "show", paddingLeft: "show", paddingRight: "show", marginLeft: "show", marginRight: "show" }, speed, callback ); }


来源 http://stackoverflow.com/questions/521291/jquery-slide-left-and-show

posted @ 2012-01-03 22:19  孤舟苦渡  阅读(32097)  评论(1编辑  收藏  举报