mirror of
https://codeberg.org/vlw/vlw.se.git
synced 2025-09-13 21:13:40 +02:00
20 lines
No EOL
1,003 B
PHP
20 lines
No EOL
1,003 B
PHP
<style><?= VV::css("public/assets/css/pages/playground/index") ?></style>
|
|
<section class="title">
|
|
|
|
<?php // I was listening to https://www.youtube.com/watch?v=DsUb4Lq6DBE when I made the dancing letters ?>
|
|
<?php foreach (str_split("playground") as $idx => $char): ?>
|
|
<img src="data:image/gif;base64,<?= base64_encode(VV::embed("public/assets/media/playground/{$char}.gif")) ?>" style="animation-delay:<?= ($idx % rand(2, 4)) * 500 ?>ms">
|
|
<?php endforeach; ?>
|
|
|
|
</section>
|
|
<section class="sss">
|
|
<button class="inline">Super Secret Settings</button>
|
|
</section>
|
|
<section class="coffee">
|
|
<img src="data:image/gif;base64,<?= base64_encode(VV::embed("public/assets/media/playground/coffee.gif")) ?>">
|
|
<div>
|
|
<h1>How much coffee is enough coffee?</h1>
|
|
<p>Woah, I 've had 4 cups of coffee today (counting from and to midnight). That's about the average amount for me (from the last 30 days)</p>
|
|
</div>
|
|
</section>
|
|
<script type="module"><?= VV::js("public/assets/js/pages/playground/index") ?></script>
|