Files
newznab-tmux/resources/forum/livewire-tailwind/views/components/loading-overlay.blade.php
T
2024-04-26 22:11:49 +02:00

16 lines
1.1 KiB
PHP

<div wire:loading class="fixed top-0 right-0 bottom-0 left-0 bg-white/40 z-50">
<div class="flex h-screen place-content-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" class="w-16 w-16">
<circle fill="#9A9A9A" stroke="#9A9A9A" stroke-width="15" r="15" cx="40" cy="100">
<animate attributeName="opacity" calcMode="spline" dur="2" values="1;0;1;" keySplines=".5 0 .5 1;.5 0 .5 1" repeatCount="indefinite" begin="-.4"></animate>
</circle>
<circle fill="#9A9A9A" stroke="#9A9A9A" stroke-width="15" r="15" cx="100" cy="100">
<animate attributeName="opacity" calcMode="spline" dur="2" values="1;0;1;" keySplines=".5 0 .5 1;.5 0 .5 1" repeatCount="indefinite" begin="-.2"></animate>
</circle>
<circle fill="#9A9A9A" stroke="#9A9A9A" stroke-width="15" r="15" cx="160" cy="100">
<animate attributeName="opacity" calcMode="spline" dur="2" values="1;0;1;" keySplines=".5 0 .5 1;.5 0 .5 1" repeatCount="indefinite" begin="0"></animate>
</circle>
</svg>
</div>
</div>