helpchrisplz
asked on
Jquery image slider slow down each slide
Hi i have a image slider on my homepage: www.thesearchengineoptimis ationcompa ny.co.uk
but i cant figure out how to slow each individual slide down. i can only slow down the animation between slides.
can any one take a look at the attached image slider files and give me a hand with what to change? thanks.
here is the link to get the slider code as i couldn't attach it. thesearchengineoptimisatio ncompany.c o.uk/banne rWithPlayl ist.zip
but i cant figure out how to slow each individual slide down. i can only slow down the animation between slides.
can any one take a look at the attached image slider files and give me a hand with what to change? thanks.
here is the link to get the slider code as i couldn't attach it. thesearchengineoptimisatio
ASKER
will that slow down the duration of the slide or the animation between the slide?
try and let me know
ASKER
ok i have just tried and it is just slowing the animation between slides and not the individual slide speed
I use 10 as value and it slow down apparition on the background
ASKER
The reason i need the slide slower is because i need the text that animates in to be shown for longer and the text only becomes visible after the animation ends. so slowing the animation between slides wont really help me to achieve what i want.
that's why i need to figure out how to make the timer slower on the slide.
that's why i need to figure out how to make the timer slower on the slide.
just add/set data-duration in each element
currenty you have 0.5s !!!
<div class="allinone_bannerRota tor_text_l ine textElement53_universal" data-delay="1" data-fade-start="0.7" data-duration="0.5" data-initial-top="333" data-final-top="290" data-final-left="290" data-initial-left="290" style="left: 290px; top: 290px; opacity: 1;"><a href="/websites/brochure-w ebsites" target="_blank">Find out more!</a></div>
currenty you have 0.5s !!!
<div class="allinone_bannerRota
ASKER
i have added data-duration="10" on everything but it doesn't slow down the slide and the text just gets cut off before they can finish the animation because the slide time isn't extented
if you put 10 seconds for each of the element you need to increase the whole duration isn't?
ASKER
there is no way to increase the whole duration using data-duration=""
i have even tried adding data-duration="50" on the <li> that holds the actual image of the slide but it doesn't do anything.
i have even tried adding data-duration="50" on the <li> that holds the actual image of the slide but it doesn't do anything.
the whole is effectDuration
ASKER
i have put effectDuration:20
and data-duration="5" on the text
but still the animation is slowed down but the slide time is not effected.
the text is not shown for any long than it was before.
and data-duration="5" on the text
but still the animation is slowed down but the slide time is not effected.
the text is not shown for any long than it was before.
checking your site and both is ok for me
ASKER
i dont think you understand what i am trying to do.
you see the red turning circular timer. that is what i am trying to slow down, so the slide stays on for longer not how slow the text moves in or how slow the animation moves.
you see the red turning circular timer. that is what i am trying to slow down, so the slide stays on for longer not how slow the text moves in or how slow the animation moves.
for me the delay of the circular timer is the highest date-duration of the current slide, correct me if I'm wrong
ASKER
i find the data duration only effect the element i put it on and not the time of the circular timer
ok, check your html, you should have a div with :
<div class="allinone_bannerWith Playlist_t ext_line textElement11_pureGallery" ... data-delay="0" >
change data-delay to the number of second you want
<div class="allinone_bannerWith
change data-delay to the number of second you want
change value of the other data-delay too and not data-duration
ASKER
that didn't work. i think i will just leave it as its taking too long to fix
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
data-delay is the delay before starting to display the layer
date-duration is the delay you want it get to animate (complete its own animation)
date-duration is the delay you want it get to animate (complete its own animation)
ASKER
its autoPlay that did what i need thx
Open in new window