Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/add view transitions #1257

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions src/pages/combates/[id].astro
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const fighter2Country = countries.find(c => c.id === fighter2?.country)
class="w-full h-full flex items-center justify-center pb-8"
href={`/luchador/${fighter1?.id}`}>
<img
transition:name={`image-${fighter1?.id}`}
src={`/images/fighters/big/${fighter1?.id}.webp`}
alt={`Imagen de ${fighter1?.name}`}
decoding="async"
Expand All @@ -42,8 +43,13 @@ const fighter2Country = countries.find(c => c.id === fighter2?.country)
</div>

<!-- Versus Letra o Imagen -->
<img src="/images/versus.png" class="size-24 md:size-50 z-20 absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 animate-slide-out-bottom delay-1000" alt="Imagen de Versus">

<img
transition:name={`image-${fighter1?.id}-vs-${fighter2?.id}`}
src="/images/versus.webp"
class="animate-slide-out-bottom absolute top-1/2 left-1/2 z-20 size-24 -translate-x-1/2 -translate-y-1/2 transform delay-1000 md:size-50"
alt="Imagen de Versus"
/>

<!-- Segundo Combatiente -->
<div class="relative w-1/2 h-auto bg-gradient-to-b from-black/50 to-pink-900/50 custom-clip animate-crash overflow-hidden hover:scale-105 transition-transform duration-200">
<!-- Esquina Derecha -->
Expand All @@ -52,6 +58,7 @@ const fighter2Country = countries.find(c => c.id === fighter2?.country)
class="w-full h-full flex items-center justify-center mt-8"
href={`/luchador/${fighter2?.id}`}>
<img
transition:name={`image-${fighter2?.id}`}
src={`/images/fighters/big/${fighter2?.id}.webp`}
alt={`Imagen de ${fighter2?.name}`}
decoding="async"
Expand Down
2 changes: 2 additions & 0 deletions src/pages/combates/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import { combates } from '@/consts/pageTitles'
<div class="group animate-fade-in animate-delay-200 relative flex h-[40vh] w-full sm:h-[50vh]">
{fighters.map((fighter, index) => (
<img
transition:name={`image-${fighter}`}
src={`/images/fighters/big/${fighter}.webp`}
class={`z-20 h-full w-1/2 object-contain ${index === 0 ? 'ml-5 lg:ml-10' : '-ml-10 lg:-ml-20'} mask-fade-bottom size-96 transition-transform duration-300 group-hover:scale-110`}
alt={`Imagen de ${fighter}`}
Expand All @@ -52,6 +53,7 @@ import { combates } from '@/consts/pageTitles'
alt=""
/>
<img
transition:name={`image-${fighters[0]}-vs-${fighters[1]}`}
src="/images/versus.webp"
class="h-auto w-24"
loading="lazy"
Expand Down