我一直在寻找通过jquery在不同方向滑动。我在stackoverflow中找到了一个自定义函数。但我不知道如何使用它。
$.fn.fadeSlideRight = function(speed,fn) {
return $(this).animate({
'opacity' : 1,
'width' : '750px'
},speed || 400, function() {
$.isFunction(fn) && fn.call(this);
});
}
请告诉我在哪里粘贴它以及如何使用它。提前谢谢。
答案 0 :(得分:0)
您只需要在使用它之前放置它(可能在脚本的开头附近)并且可以这样调用它:
tmpnam

$.fn.fadeSlideRight = function(speed,fn) {
return $(this).animate({
'opacity' : 1,
'width' : '750px'
},speed || 400, function() {
$.isFunction(fn) && fn.call(this);
});
};
$("#test").fadeSlideRight(500,function(){
alert("fadeSlideRight callback");
});

#test{
opacity:0;
width:100px;
background-color:red;
height:50px;
}