To change the speed of the fade itself you can replace the mooticker code at the very top of the icarousel.js file with the following:
| Code: |
// Moo Ticker
window.addEvent("domready", function() {
new iCarousel("mooticker", {
idPrevious: "undefined",
idNext: "undefined",
idToggle: "mooticker_toggle",
item: {klass: "mooticker_item"},
animation: {
type: "fade",
transition: Fx.Transitions.linear,
duration: 1000,
rotate: {
type: "auto"
}
}
});
});
|
The duration: 1000 relates to the speed of the fade.
If you want to change the length of time that the statement stays on the screen then you will have to download the full version of the icarousel.js file and make the changes necessary, then replace the icarousel.js file in the modules/mooticker folder with your new file.
Here is the link:
| Code: |
http://zend.lojcomm.com.br/icarousel/
|
Hope this helps,
Anthony.