jmpressjs / jmpress.js

A jQuery plugin to build a website on the infinite canvas
http://jmpressjs.github.com/jmpress.js
1.5k stars 237 forks source link

Slide speed #160

Closed JJ closed 10 years ago

JJ commented 10 years ago

Any easy way to change slide transition speed? Couldn't find it.

sokra commented 10 years ago

https://github.com/jmpressjs/jmpress.js/blob/master/src/components/core.js#L81-L82 https://github.com/jmpressjs/jmpress.js/blob/master/src/components/core.js#L86

i. e.

animation: {
  transitionDuration: "5s",
  transitionDelay: "2s"
},
transitionDuration: 7000 // = 5s + 2s
JJ commented 10 years ago

Thanks a lot