What I want
I am trying to create animation using fadeIn()/fadOut()
function in jQuery, I completed animation but It's working for one time only, although I want it to repeat for multiple times
What I tried
I tried to do this using setInterval() function twice time, where I added duration of total time of animation using totalDur variable, and passed it to parent level setInterval function
Here what I did, Please check this
$(document).ready(function() {
//this is for repeat again
setInterval(function() {
$('.box').each(function(index) {
//this is for each box animation
setInterval(function(eachshowdiv) {
eachshowdiv.fadeIn();
}, index * 800, $(this));
});
}, 2000);
});
.wrapper {
width: 1000px;
margin: 0px auto;
}
.wrapper .box {
height: 250px;
width: 18%;
margin-right: 2%;
float: left;
background: green;
display: none
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="wrapper">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
You can use .promise()
, .fadeOut()
, recursion
$(document).ready(function() {
function repeatAnimation() {
var box = $(".box").fadeOut();
box.each(function(index) {
$(this).delay(index * 800).fadeIn();
});
box.promise().then(function() {
setTimeout(repeatAnimation, 2000)
})
};
repeatAnimation()
});
.wrapper {
width: 1000px;
margin: 0px auto;
}
.wrapper .box {
height: 250px;
width: 18%;
margin-right: 2%;
float: left;
background: green;
display: none
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="wrapper">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
i want to animation left to right then right to left .
To reverse the animation at completion you can use .queue()
, .delay()
, .promise()
, .then()
, .toArray()
, Array.prototype.reverse()
, .animate()
to animate opacity
of the elements.
$(document).ready(function() {
function repeatAndReverseAnimation(boxes) {
return $(boxes).queue("boxes",
$.map(boxes.box, function(box) {
return function(next) {
return $(box).animate({opacity: boxes.toggle[0]})
.delay(boxes.delay[0]).promise().then(next)
}
})).dequeue("boxes").promise("boxes")
.then(function() {
this[0].toggle.reverse();
this[0].box.reverse();
return this.delay(this[0].delay[1], "boxes")
.dequeue("boxes").promise("boxes")
.then($.proxy(repeatAndReverseAnimation, null, this[0]));
});
};
repeatAndReverseAnimation({
box:$(".box").toArray()
, toggle:[1, 0]
, delay:[800, 2000]
});
});
.wrapper {
width: 1000px;
margin: 0px auto;
}
.wrapper .box {
height: 250px;
width: 18%;
margin-right: 2%;
float: left;
background: green;
opacity: 0;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js">
</script>
<div class="wrapper">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>