I want to slide each element in my div one after the other having some pause after each item slides. Below is my code attached.
$(function () {
$('.tick').each(function () {
var $self = $(this);
var t1 = new TimelineLite();
t1.to($self, .5, { x: 100, ease: Cubic.easeInOut });
t1.pause();
t1.resume();
});'
what it does is: It slides all the items at a time. It doesn't pause after each item slides... What is the issue in the code?
Thanks & Regards,
Bunnie