The Paused Space feature allows you to display custom HTML content when your space is paused. Instead of showing the map, users will see your custom content. This is perfect for embedding videos, streams, surveys, or displaying pause messages. It’s also possible to use the group chat.
The Paused Screen supports full HTML, including:
Display a message when your event is temporarily paused or has ended.
Example:
<div style="display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; width: 100vw; font-family: Arial, sans-serif; text-align: center; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white;">
<h1 style="font-size: 3em; margin-bottom: 20px;">Event Break</h1>
<p style="font-size: 1.5em; margin-bottom: 30px;">We'll be back at 16:15!</p>
<p style="font-size: 1.2em; opacity: 0.9;">☕ Grab a coffee and return soon</p>
</div>
Embed a live stream that users can watch while the space is paused.
Example:
<div style="display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; width: 100vw; background: #000; padding: 20px;">
<h2 style="color: white; font-family: Arial, sans-serif; margin-bottom: 20px;">Watch Live Stream</h2>
<iframe
width="100%"
height="100%"
src="<https://www.youtube.com/embed/J5kyVklWdOU?si=W6QKVX-K_AdUpVnD&autoplay=1>"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
💡 Tip: Replace YOUR_VIDEO_ID (red marker) with your actual YouTube video ID. Add ?autoplay=1 to start the video automatically.