2026-03-20 12:08:33 +01:00
|
|
|
<?php if ($block->url()->isNotEmpty()):
|
|
|
|
|
$iframeUrl = preg_replace('/\s+/', '', $block->url()->value());
|
|
|
|
|
?>
|
2026-03-20 12:14:57 +01:00
|
|
|
<div class="iframe-game-container" data-src="<?= htmlspecialchars($iframeUrl, ENT_QUOTES, 'UTF-8') ?>">
|
2026-03-20 11:57:21 +01:00
|
|
|
<iframe
|
|
|
|
|
width="400"
|
|
|
|
|
height="650"
|
2026-03-20 12:08:33 +01:00
|
|
|
style="border: none; overflow: hidden; pointer-events: none; display: block; width: 100%;"
|
2026-03-20 12:14:57 +01:00
|
|
|
src="about:blank"
|
2026-03-20 11:57:21 +01:00
|
|
|
></iframe>
|
2026-03-20 12:08:33 +01:00
|
|
|
<div class="iframe-click-overlay" data-state="initial">
|
2026-03-20 11:57:21 +01:00
|
|
|
<div class="overlay-content">
|
|
|
|
|
<div class="play-icon">▶</div>
|
2026-03-20 12:08:33 +01:00
|
|
|
<p class="overlay-message">Cliquez pour jouer</p>
|
2026-03-20 11:57:21 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<button class="iframe-deactivate-btn" title="Deactivate game (restore scrolling)">✕</button>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endif ?>
|