我有以下代码:
$("#headerimg" + currentContainer).slideUp(function() {
setTimeout(function() {
$("#headertxt").slideUp(100).css({"display" : "block"});
animating = false;
}, 500);
});
现在,图片从下到上呈现动画效果。但我想要的是图片,从右向左滑动。我必须改变代码中的内容?
答案 0 :(得分:3)
答案 1 :(得分:1)
jQuery中没有像“slideLeft
”这样的内置方法。所以你要么写一个像
$.fn.slideLeft = function(speed){
return this.each(function(){
var $this = $(this);
$this.animate({'width': '0px'}, jQuery.fx.speeds[speed] || 200);
});
};
或者您必须在那里寻找already existing plugin。