Powered by:
Listo para jugar

En Safari horizontal, desliza una vez hacia arriba para ocultar la barra del navegador. Cuando detectemos ese gesto, activamos el inicio del juego.

IHOP Mexico
Voltea tu dispositivo

📱🔄 Para una mejor experiencia, gira tu dispositivo y juega en horizontal. 🔁✨

Puntaje

000000
Comparte tu score con el texto y la URL del juego.
ainBtn, () => { AUDIO.unlock(); enterFullscreenIfPossible(); setPortraitClass(); const scene = activeScene(); if (scene) scene.restartRun(); }); bindTap(UI.shareXBtn, () => shareScore('x')); bindTap(UI.shareFbBtn, () => shareScore('facebook')); bindTap(UI.infoBtn, () => UI.infoModal.classList.add('show')); bindTap(UI.closeInfoBtn, () => UI.infoModal.classList.remove('show')); UI.infoModal.addEventListener('click', (e) => { if (e.target === UI.infoModal) UI.infoModal.classList.remove('show'); }); GAME_CONTAINER.addEventListener('touchstart', forwardGameplayTap, { passive: false }); GAME_CONTAINER.addEventListener('pointerdown', (event) => { if (event.pointerType === 'touch') return; forwardGameplayTap(event); }, { passive: false }); ['pointerdown', 'touchend', 'keydown'].forEach((eventName) => { window.addEventListener(eventName, () => AUDIO.unlock(), { passive: true }); }); window.addEventListener('resize', setPortraitClass); window.addEventListener('orientationchange', () => setTimeout(setPortraitClass, 50)); window.addEventListener('scroll', maybeUnlockSafariLandscape, { passive: true }); window.visualViewport?.addEventListener('resize', setPortraitClass); window.visualViewport?.addEventListener('scroll', () => { setPortraitClass(); maybeUnlockSafariLandscape(); }); window.addEventListener('pageshow', () => { safariLandscapePrepared = false; setPortraitClass(); }); window.addEventListener('load', () => { safariLandscapePrepared = false; setPortraitClass(); }); document.addEventListener('fullscreenchange', setPortraitClass); document.addEventListener('gesturestart', (e) => e.preventDefault(), { passive: false }); document.addEventListener('gesturechange', (e) => e.preventDefault(), { passive: false }); document.addEventListener('gestureend', (e) => e.preventDefault(), { passive: false }); document.addEventListener('dblclick', (e) => e.preventDefault(), { passive: false }); applyViewportHeight(); setPortraitClass();