welcome.js 223 B

12345678
  1. // DOM cache.
  2. const welcomeButton = document.getElementById('welcomeButton')
  3. welcomeButton.addEventListener('click', e => {
  4. $('#welcomeContainer').fadeOut(500, () => {
  5. $('#loginContainer').fadeIn(500)
  6. })
  7. })