Files
Jarvis/static/js/main.js

22 lines
407 B
JavaScript

var a = 0;
function activeClass() {
if (a == 0) {
document.getElementById('dropdown').style.display = "block";
a = 1;
}
else {
document.getElementById('dropdown').style.display = "none";
a = 0;
}
}
$(function() {
setTimeout(function() {
$('#1').show(400);
}, 500);
setTimeout(function() {
$('#1').hide(400);
}, 6000);
});