|
|
|
@ -70,12 +70,15 @@
|
|
|
|
|
<option>training programs</option>
|
|
|
|
|
<option>letters</option>
|
|
|
|
|
<option>spreadsheets</option>
|
|
|
|
|
<option>printers</option>
|
|
|
|
|
<option>conflicts</option>
|
|
|
|
|
<option>conversations</option>
|
|
|
|
|
<option>social shelves</option>
|
|
|
|
|
<option>minor stories</option>
|
|
|
|
|
<option>bureaucracies</option>
|
|
|
|
|
<option>code documentation</option>
|
|
|
|
|
<option>memes</option>
|
|
|
|
|
<option>modular synths</option>
|
|
|
|
|
<option>counter-action strategies</option>
|
|
|
|
|
<option>first-aid kits</option>
|
|
|
|
|
<option>magical answers</option>
|
|
|
|
@ -153,13 +156,10 @@
|
|
|
|
|
"Where can",
|
|
|
|
|
"Why do",
|
|
|
|
|
];
|
|
|
|
|
console.log(options);
|
|
|
|
|
questions.forEach(function(question, i){
|
|
|
|
|
var question_div = document.getElementById("question-div");
|
|
|
|
|
question_div.innerHTML = question;
|
|
|
|
|
console.log(question_div);
|
|
|
|
|
var dropdown_options = document.getElementById("dropdown-options");
|
|
|
|
|
console.log(dropdown_options);
|
|
|
|
|
var dropdowns_div = document.getElementById("dropdowns");
|
|
|
|
|
dropdowns_div.innerHTML += dropdown_options.innerHTML;
|
|
|
|
|
});
|
|
|
|
@ -207,9 +207,36 @@
|
|
|
|
|
"| '_ \\ / _ \\ | |/ _ \\| |\n"+
|
|
|
|
|
"| | | | __/ | | (_) |_|\n"+
|
|
|
|
|
"|_| |_|\\___|_|_|\\___/(_)\n"+
|
|
|
|
|
"amazing that you opened the inspector to check the code. We hope you will apply \n"+
|
|
|
|
|
"amazing that you opened the inspector to check the code. Please apply \n"+
|
|
|
|
|
"and mention that you have found the codeword 'opisop'! \n";
|
|
|
|
|
console.log(message);
|
|
|
|
|
|
|
|
|
|
dropcounter = 1;
|
|
|
|
|
dropamount = 100;
|
|
|
|
|
function makedrop(){
|
|
|
|
|
if(dropcounter < dropamount){
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
var drop = document.createElement("div");
|
|
|
|
|
drop.style.left = Math.random() * window.innerWidth+"px";
|
|
|
|
|
drop.style.animationDuration = Math.random() * 4 + 4 + "s";
|
|
|
|
|
drop.classList.add("drop");
|
|
|
|
|
var inside = document.createElement("INPUT");
|
|
|
|
|
inside.setAttribute("type", Math.floor(Math.random() > 0.5) ? "checkbox" : "radio");
|
|
|
|
|
inside.checked = Math.floor(Math.random() > 0.5) ? true : false;
|
|
|
|
|
inside.classList.add("sinus");
|
|
|
|
|
inside.style.animationDuration = Math.random() * 8 + 6 + "s";
|
|
|
|
|
drop.appendChild(inside);
|
|
|
|
|
document.body.appendChild(drop);
|
|
|
|
|
makedrop();
|
|
|
|
|
}, 50);
|
|
|
|
|
}
|
|
|
|
|
dropcounter++;
|
|
|
|
|
}
|
|
|
|
|
makedrop();
|
|
|
|
|
var checking = new URLSearchParams(window.location.search);
|
|
|
|
|
if(checking.get('easteregg') == "true"){
|
|
|
|
|
alert("🪄 You found the secret treasure word🌟. Its called 'Special tissue'🤧! Please mention it in your application 🪄");
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|