top of page
Home
About
Careers
Projects
Euphoria
Soundtrack
Euphora Dev Progress
News
Gallery
More
Use tab to navigate through the menu items.
EUPHORIA: THE HIDDEN ISLES
Development Progress
*Updates Every Friday
User Interface and Menu Windows
Professions
Movement
Interactions
Social Functions and Groups
NPC Interactions
Quests
Basic Combat Mechanics
Monsters
Dungeons
Cities and City Tiers
Player Homes and Guild Halls
Special Chat Functions
Proficiencies
Buffs and Debuffs
Character Needs
Earning Money / Economy
Reputation
Crafting / Gathering
Alchemy/Enchantments
Books
Death
bottom of page
var animateButton = function(e) { e.preventDefault; //reset animation e.target.classList.remove('animate'); e.target.classList.add('animate'); setTimeout(function(){ e.target.classList.remove('animate'); },700); }; var bubblyButtons = document.getElementsByClassName("bubbly-button"); for (var i = 0; i < bubblyButtons.length; i++) { bubblyButtons[i].addEventListener('click', animateButton, false); }