想知道是否有人可以帮助我修改此网站上的脚本,以便图像在初始加载时稍微慢一点,以及在单击左/右箭头时如何使图像居中。 现在他们为左派辩护。
网站:
http://oddopolis.com/2012/index.html
由于
答案 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
}
})