Difference between revisions of "Team:SVCE Chennai/Javascript"
Abrahamrkj (Talk | contribs) |
Abrahamrkj (Talk | contribs) |
||
Line 5: | Line 5: | ||
callback: function() { | callback: function() { | ||
console.log("Called"); | console.log("Called"); | ||
+ | $(".loading").addClass("animateClassIntro"); | ||
+ | function showpanel() { | ||
+ | $(".navBarIGEM").removeClass("hide"); | ||
+ | $(".footer").removeClass("hide"); | ||
+ | } | ||
+ | |||
+ | setTimeout(showpanel, 2000); | ||
+ | |||
} | } | ||
}); | }); | ||
}); | }); |
Revision as of 06:26, 10 September 2015
$(function(){ $("#minicellIntro").typed({ strings: ["Hello ! I'm Minicell !"], typeSpeed: 0, callback: function() { console.log("Called"); $(".loading").addClass("animateClassIntro"); function showpanel() { $(".navBarIGEM").removeClass("hide"); $(".footer").removeClass("hide"); } setTimeout(showpanel, 2000);
} }); });