jQuery animation with delay












0















I needed animated banner to show and hide div's with delayed animation, but at the end of the animation all things are still triggered together and timing is ignored and events are not fired correctly. Didn't find anywhere what could be wrong with my code, any suggestions how to handle this thins better?
Heres the HTML



<div class="container">

<div class="background">
<img class="background-image" src="img/ev200-background.png">
<div class="txt-1">
<img src="img/ev200-txt-1.png">
</div>

<div class="txt-2">
<span class="ship">
<img src="img/ev200-ship.png">
</span>
<span class="txt-in-1">
<img src="img/ev200-txt-2.png">
</span>
<span class="txt-in-2">
<img src ="img/ev200-txt-3.png">
</span>
</div>

<div class="txt-3">
<span class="txt-in-3-1">
<img src="img/ev200-txt-4.png">
</span>
<span class="west-tooder">
<img src="img/ev200-W-icon.png">
</span>
</div>

<div class="txt-4">
<span class="txt-4-description">
<img src="img/ev200-txt-5.png">
</span>
</div>

<div class="txt-5">
<span class="txt-5-description">
<img src="img/ev200-txt-6.png">
</span>
</div>

<div class="txt-6">
<span class="txt-6-description">
<img src="img/ev200-txt-7.png">
</span>
</div>


</div> <!-- End of background-->



</div>


And here's jQuery



 $(document).ready(function(){


$( ".container" ).click(function() {



$( ".txt-1" ).animate({
top: "120px",
left: "160",
right: "0",
}, 1500, function() {

});

$( ".txt-1 img" ).animate({
width: "80%",
height: "auto"
}, 1500, function() {

});

$( ".txt-1" ).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-2" ).delay(3000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".ship" ).delay(4500).animate({
height: "80%",
top: "10%",
left: "5%"
}, 1500, function() {

});

$( ".txt-2 .txt-in-1" ).delay(4500).animate({
opacity: "0"
}, 750, function() {

});

$( ".txt-2 .txt-in-2" ).delay(5250).animate({
opacity: "1"
}, 750, function() {

});

$( ".txt-2" ).delay(6000).animate({
opacity: "0"
}, 750, function() {

});

$( ".txt-3" ).delay(6000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-3" ).delay(7500).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-4" ).delay(9000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-4" ).delay(10500).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-5" ).delay(12000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-5" ).delay(13500).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-6" ).delay(15000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-6" ).delay(16500).animate({
opacity: "0"
}, 1500, function() {

});


});



});










share|improve this question

























  • Why all the empty callbacks? Also can I see your HTML? Also do you know that by using delay() and the delay as a parameter in animate() you are effectively increasing the time? Why not consolidate?

    – Katie.Sun
    Nov 20 '18 at 18:55













  • Edited my text and added HTML. Didn't add callback functions because didn't know why. Which should be correct example considered that i want to have different delays and animation times?

    – teet
    Nov 20 '18 at 23:28











  • Ok. can you also post your CSS?

    – Katie.Sun
    Nov 20 '18 at 23:42











  • Your animations are working fine. are you sure you are linking to your javascript file correctly?

    – Katie.Sun
    Nov 20 '18 at 23:53
















0















I needed animated banner to show and hide div's with delayed animation, but at the end of the animation all things are still triggered together and timing is ignored and events are not fired correctly. Didn't find anywhere what could be wrong with my code, any suggestions how to handle this thins better?
Heres the HTML



<div class="container">

<div class="background">
<img class="background-image" src="img/ev200-background.png">
<div class="txt-1">
<img src="img/ev200-txt-1.png">
</div>

<div class="txt-2">
<span class="ship">
<img src="img/ev200-ship.png">
</span>
<span class="txt-in-1">
<img src="img/ev200-txt-2.png">
</span>
<span class="txt-in-2">
<img src ="img/ev200-txt-3.png">
</span>
</div>

<div class="txt-3">
<span class="txt-in-3-1">
<img src="img/ev200-txt-4.png">
</span>
<span class="west-tooder">
<img src="img/ev200-W-icon.png">
</span>
</div>

<div class="txt-4">
<span class="txt-4-description">
<img src="img/ev200-txt-5.png">
</span>
</div>

<div class="txt-5">
<span class="txt-5-description">
<img src="img/ev200-txt-6.png">
</span>
</div>

<div class="txt-6">
<span class="txt-6-description">
<img src="img/ev200-txt-7.png">
</span>
</div>


</div> <!-- End of background-->



</div>


And here's jQuery



 $(document).ready(function(){


$( ".container" ).click(function() {



$( ".txt-1" ).animate({
top: "120px",
left: "160",
right: "0",
}, 1500, function() {

});

$( ".txt-1 img" ).animate({
width: "80%",
height: "auto"
}, 1500, function() {

});

$( ".txt-1" ).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-2" ).delay(3000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".ship" ).delay(4500).animate({
height: "80%",
top: "10%",
left: "5%"
}, 1500, function() {

});

$( ".txt-2 .txt-in-1" ).delay(4500).animate({
opacity: "0"
}, 750, function() {

});

$( ".txt-2 .txt-in-2" ).delay(5250).animate({
opacity: "1"
}, 750, function() {

});

$( ".txt-2" ).delay(6000).animate({
opacity: "0"
}, 750, function() {

});

$( ".txt-3" ).delay(6000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-3" ).delay(7500).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-4" ).delay(9000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-4" ).delay(10500).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-5" ).delay(12000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-5" ).delay(13500).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-6" ).delay(15000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-6" ).delay(16500).animate({
opacity: "0"
}, 1500, function() {

});


});



});










share|improve this question

























  • Why all the empty callbacks? Also can I see your HTML? Also do you know that by using delay() and the delay as a parameter in animate() you are effectively increasing the time? Why not consolidate?

    – Katie.Sun
    Nov 20 '18 at 18:55













  • Edited my text and added HTML. Didn't add callback functions because didn't know why. Which should be correct example considered that i want to have different delays and animation times?

    – teet
    Nov 20 '18 at 23:28











  • Ok. can you also post your CSS?

    – Katie.Sun
    Nov 20 '18 at 23:42











  • Your animations are working fine. are you sure you are linking to your javascript file correctly?

    – Katie.Sun
    Nov 20 '18 at 23:53














0












0








0








I needed animated banner to show and hide div's with delayed animation, but at the end of the animation all things are still triggered together and timing is ignored and events are not fired correctly. Didn't find anywhere what could be wrong with my code, any suggestions how to handle this thins better?
Heres the HTML



<div class="container">

<div class="background">
<img class="background-image" src="img/ev200-background.png">
<div class="txt-1">
<img src="img/ev200-txt-1.png">
</div>

<div class="txt-2">
<span class="ship">
<img src="img/ev200-ship.png">
</span>
<span class="txt-in-1">
<img src="img/ev200-txt-2.png">
</span>
<span class="txt-in-2">
<img src ="img/ev200-txt-3.png">
</span>
</div>

<div class="txt-3">
<span class="txt-in-3-1">
<img src="img/ev200-txt-4.png">
</span>
<span class="west-tooder">
<img src="img/ev200-W-icon.png">
</span>
</div>

<div class="txt-4">
<span class="txt-4-description">
<img src="img/ev200-txt-5.png">
</span>
</div>

<div class="txt-5">
<span class="txt-5-description">
<img src="img/ev200-txt-6.png">
</span>
</div>

<div class="txt-6">
<span class="txt-6-description">
<img src="img/ev200-txt-7.png">
</span>
</div>


</div> <!-- End of background-->



</div>


And here's jQuery



 $(document).ready(function(){


$( ".container" ).click(function() {



$( ".txt-1" ).animate({
top: "120px",
left: "160",
right: "0",
}, 1500, function() {

});

$( ".txt-1 img" ).animate({
width: "80%",
height: "auto"
}, 1500, function() {

});

$( ".txt-1" ).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-2" ).delay(3000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".ship" ).delay(4500).animate({
height: "80%",
top: "10%",
left: "5%"
}, 1500, function() {

});

$( ".txt-2 .txt-in-1" ).delay(4500).animate({
opacity: "0"
}, 750, function() {

});

$( ".txt-2 .txt-in-2" ).delay(5250).animate({
opacity: "1"
}, 750, function() {

});

$( ".txt-2" ).delay(6000).animate({
opacity: "0"
}, 750, function() {

});

$( ".txt-3" ).delay(6000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-3" ).delay(7500).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-4" ).delay(9000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-4" ).delay(10500).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-5" ).delay(12000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-5" ).delay(13500).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-6" ).delay(15000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-6" ).delay(16500).animate({
opacity: "0"
}, 1500, function() {

});


});



});










share|improve this question
















I needed animated banner to show and hide div's with delayed animation, but at the end of the animation all things are still triggered together and timing is ignored and events are not fired correctly. Didn't find anywhere what could be wrong with my code, any suggestions how to handle this thins better?
Heres the HTML



<div class="container">

<div class="background">
<img class="background-image" src="img/ev200-background.png">
<div class="txt-1">
<img src="img/ev200-txt-1.png">
</div>

<div class="txt-2">
<span class="ship">
<img src="img/ev200-ship.png">
</span>
<span class="txt-in-1">
<img src="img/ev200-txt-2.png">
</span>
<span class="txt-in-2">
<img src ="img/ev200-txt-3.png">
</span>
</div>

<div class="txt-3">
<span class="txt-in-3-1">
<img src="img/ev200-txt-4.png">
</span>
<span class="west-tooder">
<img src="img/ev200-W-icon.png">
</span>
</div>

<div class="txt-4">
<span class="txt-4-description">
<img src="img/ev200-txt-5.png">
</span>
</div>

<div class="txt-5">
<span class="txt-5-description">
<img src="img/ev200-txt-6.png">
</span>
</div>

<div class="txt-6">
<span class="txt-6-description">
<img src="img/ev200-txt-7.png">
</span>
</div>


</div> <!-- End of background-->



</div>


And here's jQuery



 $(document).ready(function(){


$( ".container" ).click(function() {



$( ".txt-1" ).animate({
top: "120px",
left: "160",
right: "0",
}, 1500, function() {

});

$( ".txt-1 img" ).animate({
width: "80%",
height: "auto"
}, 1500, function() {

});

$( ".txt-1" ).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-2" ).delay(3000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".ship" ).delay(4500).animate({
height: "80%",
top: "10%",
left: "5%"
}, 1500, function() {

});

$( ".txt-2 .txt-in-1" ).delay(4500).animate({
opacity: "0"
}, 750, function() {

});

$( ".txt-2 .txt-in-2" ).delay(5250).animate({
opacity: "1"
}, 750, function() {

});

$( ".txt-2" ).delay(6000).animate({
opacity: "0"
}, 750, function() {

});

$( ".txt-3" ).delay(6000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-3" ).delay(7500).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-4" ).delay(9000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-4" ).delay(10500).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-5" ).delay(12000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-5" ).delay(13500).animate({
opacity: "0"
}, 1500, function() {

});

$( ".txt-6" ).delay(15000).animate({
opacity: "1"
}, 1500, function() {

});

$( ".txt-6" ).delay(16500).animate({
opacity: "0"
}, 1500, function() {

});


});



});







javascript jquery






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 20 '18 at 23:27







teet

















asked Nov 20 '18 at 18:51









teetteet

11




11













  • Why all the empty callbacks? Also can I see your HTML? Also do you know that by using delay() and the delay as a parameter in animate() you are effectively increasing the time? Why not consolidate?

    – Katie.Sun
    Nov 20 '18 at 18:55













  • Edited my text and added HTML. Didn't add callback functions because didn't know why. Which should be correct example considered that i want to have different delays and animation times?

    – teet
    Nov 20 '18 at 23:28











  • Ok. can you also post your CSS?

    – Katie.Sun
    Nov 20 '18 at 23:42











  • Your animations are working fine. are you sure you are linking to your javascript file correctly?

    – Katie.Sun
    Nov 20 '18 at 23:53



















  • Why all the empty callbacks? Also can I see your HTML? Also do you know that by using delay() and the delay as a parameter in animate() you are effectively increasing the time? Why not consolidate?

    – Katie.Sun
    Nov 20 '18 at 18:55













  • Edited my text and added HTML. Didn't add callback functions because didn't know why. Which should be correct example considered that i want to have different delays and animation times?

    – teet
    Nov 20 '18 at 23:28











  • Ok. can you also post your CSS?

    – Katie.Sun
    Nov 20 '18 at 23:42











  • Your animations are working fine. are you sure you are linking to your javascript file correctly?

    – Katie.Sun
    Nov 20 '18 at 23:53

















Why all the empty callbacks? Also can I see your HTML? Also do you know that by using delay() and the delay as a parameter in animate() you are effectively increasing the time? Why not consolidate?

– Katie.Sun
Nov 20 '18 at 18:55







Why all the empty callbacks? Also can I see your HTML? Also do you know that by using delay() and the delay as a parameter in animate() you are effectively increasing the time? Why not consolidate?

– Katie.Sun
Nov 20 '18 at 18:55















Edited my text and added HTML. Didn't add callback functions because didn't know why. Which should be correct example considered that i want to have different delays and animation times?

– teet
Nov 20 '18 at 23:28





Edited my text and added HTML. Didn't add callback functions because didn't know why. Which should be correct example considered that i want to have different delays and animation times?

– teet
Nov 20 '18 at 23:28













Ok. can you also post your CSS?

– Katie.Sun
Nov 20 '18 at 23:42





Ok. can you also post your CSS?

– Katie.Sun
Nov 20 '18 at 23:42













Your animations are working fine. are you sure you are linking to your javascript file correctly?

– Katie.Sun
Nov 20 '18 at 23:53





Your animations are working fine. are you sure you are linking to your javascript file correctly?

– Katie.Sun
Nov 20 '18 at 23:53












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53399654%2fjquery-animation-with-delay%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53399654%2fjquery-animation-with-delay%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

If I really need a card on my start hand, how many mulligans make sense? [duplicate]

Alcedinidae

Can an atomic nucleus contain both particles and antiparticles? [duplicate]