Open royalmo opened 2 years ago
When enabling easter eggs in the settings menu, make the switch do something weird (i.e. spinning non-stop).
10% Change of getting 'Enginyeria de sistemes TOC', and every HTML element will have a margin of a random number between 1 and 5 px. It will look sooo ugly :/
const allInBody = document.querySelectorAll('*');
for (const element of allInBody) {
console.log('a');
element.style.marginLeft = Math.floor(Math.random() * 21 - 5) + "px";
}
Chrome's offline dinousaur game, in the blue banner.
All draggable in the landing page. Check this: https://stackoverflow.com/questions/2424191
As promissed, I need to add some easter eggs!! Here are some ideas I could implement:
Timetable flipper
Using
element.style.transform = 'rotate(90deg)';
, flip every element (table) on the timetables.Feel free to add some ideas, I have a shortage of them :/