I have a div ('.starttimeline') that I want to click to start(resume) a ScrollTo function and a div ('.pausetimeline') that I want to click to stop(pause) that same ScrollTo function.
I can easily have the ScrollTo function start at the desired speed (25000ms) by clicking '.starttimeline.'. I can also have it stop on the click of the '.pausetimeline' div.
However, the problem is with the SPEED. Each time I "resume" (by clicking '.starttimeline') the ScrollTo, (before it has completed,) the function slows down because it assumes that it has to still get to the target in 25000ms.
Here's my code:
<script type="text/javascript">
$(".starttimeline").click(function() {
$(".starttimeline").fadeOut(500, "linear");
$.scrollTo($("#endtimeline"), 25000, {easing: 'linear'});
$(".pausetimeline").fadeIn(500, "linear");
});
$(".pausetimeline").click(function() {
$(".pausetimeline").fadeOut(500, "linear");
jQuery.scrollTo.window().stop(true);
$(".starttimeline").fadeIn(500, "linear");
});
</script>
Does anyone know how to keep the pace constant regardless of where you click to resume the ScrollTo function? Perhaps I can't use the 25000ms for speed. If that's the case, what do I do to emulate that kind of "pace" each and every time, instead of slowing down as each click starts closer to the target???
Thanks so much if you could offer some help!
EDIT: I can't seem to get anyone to answer this question for me. If it's due to any lack of support on my end, sorry for that. I've gone back and up voting the people who have helped me in the past and provided answers for previous questions. I'm really new to Javascript and Jquery, so this is all a huge learning process. Looking for tutorials and answers to similar questions still hasn't helped enough for my case. I need someone to probably show me a more specific solution for the code I've already provided.