Difference between revisions of "Team:SVCE Chennai/Javascript"
Abrahamrkj (Talk | contribs) |
Abrahamrkj (Talk | contribs) |
||
Line 18: | Line 18: | ||
$("#minicellIntro").typed({ | $("#minicellIntro").typed({ | ||
− | strings: ["Hello ! I'm Minicell !"], | + | strings: ["Hello ! I'm Minicell ! ^4000"], |
typeSpeed: 0, | typeSpeed: 0, | ||
callback: function() { | callback: function() { |
Revision as of 12:42, 10 September 2015
$(function(){
if (annyang) {
var commands = {
'Hello': function() { console.log("Hello"); } };
annyang.addCommands(commands);
// annyang.start();
}
$('[data-toggle="tooltip"]').tooltip();
$("#minicellIntro").typed({ strings: ["Hello ! I'm Minicell ! ^4000"], typeSpeed: 0, callback: function() { console.log("Called"); $(".loading").addClass("animateClassIntro"); function showpanel() { $(".loading").addClass("hide"); $(".navBarIGEM").removeClass("hide"); $(".footer").removeClass("hide"); } setTimeout(showpanel, 2000);
} }); });