2023-05-07 01:39:44 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
$defineProps<{
|
|
|
|
img: string
|
|
|
|
topic: string
|
|
|
|
href: string
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-06-01 15:36:34 +08:00
|
|
|
<LocaleNuxtLink
|
2023-05-07 01:39:44 +08:00
|
|
|
:href="href"
|
2023-06-01 15:36:34 +08:00
|
|
|
class="group h-min-200px relative h-full w-full overflow-hidden rounded-lg bg-primary bg-opacity-35 shadow-lg"
|
2023-05-07 01:39:44 +08:00
|
|
|
>
|
2023-05-31 20:43:27 +08:00
|
|
|
<!-- <NuxtImg loading="lazy" :src="img" class="h-full w-full" fit="cover" width="300" height="180" /> -->
|
2023-06-01 15:36:34 +08:00
|
|
|
<ImageLoading :src="img" class="h-full w-full transition-all group-hover:(scale-110 blur)" />
|
2023-05-16 21:18:46 +08:00
|
|
|
<div class="mask-img h-50px bg-dark-700/70 transition-all group-hover:(h-full)">
|
|
|
|
<div class="text-h6 flex-grow">
|
|
|
|
<p :title="$t(topic)" class="line-clamp-1 w-full text-white group-hover:(line-clamp-3 h-full)">
|
2023-05-07 01:39:44 +08:00
|
|
|
{{ $t(topic) }}
|
|
|
|
</p>
|
|
|
|
</div>
|
2023-05-16 21:18:46 +08:00
|
|
|
<div i-solar-arrow-right-linear mx-2 stroke-3 font-bold text-white />
|
2023-05-07 01:39:44 +08:00
|
|
|
</div>
|
2023-06-01 15:36:34 +08:00
|
|
|
</LocaleNuxtLink>
|
2023-05-07 01:39:44 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.mask-img{
|
2023-06-01 15:36:34 +08:00
|
|
|
--uno:'absolute bottom-0 left-0 z-1 flex w-full items-center justify-center border-t-2px border-dark-50/10 p-2 px-10 transition ';
|
2023-05-07 01:39:44 +08:00
|
|
|
box-shadow: 0 -5px 25px rgba(0,0,0,0.4);
|
|
|
|
}
|
|
|
|
</style>
|