Does anyone know how to shorten the time interval between transitions of the text?
Does anyone know how to shorten the time interval between transitions of the text? |
it is in templates/base/css/splash.css file: .bx-cd-headline.zoom b.is-visible, .bx-cd-headline.zoom .bx-cd-word.is-visible { opacity: 1; -webkit-animation: zoom-in 0.8s; -moz-animation: zoom-in 0.8s; animation: zoom-in 0.8s; } .bx-cd-headline.zoom b.is-hidden, .bx-cd-headline.zoom .bx-cd-word.is-hidden { -webkit-animation: zoom-out 0.8s; -moz-animation: zoom-out 0.8s; animation: zoom-out 0.8s; } Rules → http://www.boonex.com/terms |
Thank you for the response. Aren't those timings connected to the speed at which the animation comes in ad out? I am looking at how to shorten the time interval of one set of words coming in and out and a new set of words coming in and out. |
At the moment, each set of words (there are 3 sets) appear for 1 minute then change to the next.
Ideally I'd only like them to appear for about 7 seconds per set.
Any ideas on how to do this? |
path_to_dolphin_install/inc/js/splash.js //set animation timing var animationDelay = 60000; The timing is measured in miliseconds, 60,000 meaning 60 seconds. |
Zigstum, thank you so much.....you are a super star. All sorted now. |
You are welcome of course Profesize :) |