jquery轮播滑块淡入/中央图像

时间:2012-03-01 20:29:38

标签: jquery slider carousel

想知道是否有人可以帮助我修改此网站上的脚本,以便图像在初始加载时稍微慢一点,以及在单击左/右箭头时如何使图像居中。 现在他们为左派辩护。

网站:

http://oddopolis.com/2012/index.html

由于

1 个答案:

答案 0 :(得分:0)

你没有类似的选择。 我只看一下你使用的这个插件的代码,时间是硬编码的。

也许你可以通过扩展宽松来做一些自定义:

$.extend(jQuery.easing, {
easeInOutSine : function(x, t, b, c, d) {
    return -c / 2 * (Math.cos(Math.PI * t / d) - 1) + b
},
easeOutSine : function(x, t, b, c, d) {
    return c * Math.sin(t / d * (Math.PI / 2)) + b
},
easeOutCubic : function(x, t, b, c, d) {
    return c * ((t = t / d - 1) * t * t + 1) + b
}
})