在 jQuery 中,您可以使用“slideIn”和“slideOut”向上或向下滑动内容,但没有向左或向右滑动的功能。
我想构建自己的轮播并水平滑动内容。
我如何让内容水平滑动,将新内容滑动到位。内容必须是任何内容,包括混合在一起的图像和文本。
jQuery 中的伪代码类似于:
$('YOURELEMENT').animate({
left : x
}, TIME);
您可以使用animate()
水平制作幻灯片效果。
$('#element').animate(/* properties [, duration ] [, easing ] [, complete ] */);
例子:
http://jsfiddle.net/sg3s/rs2QK/
内部如何slideup()
运作:
function (speed, callback) {
return this.animate({
height: "hide"
},
speed, callback);
}