beehive/app/components/landing/D3_INTELLIGENT_APIARY.vue

25 lines
647 B
Vue
Raw Normal View History

2025-10-22 17:43:13 +08:00
<script lang="ts" setup>
</script>
<template>
2025-10-23 15:30:21 +08:00
<div
:style="{ backgroundImage: `url('/img/index/3d_bg.png')` , }"
class="bg-cover bg-no-repeat bg-center w-full ">
2025-10-27 10:21:11 +08:00
<Motion
:in-view-options="{ once: true }"
:initial="{ opacity: 0 ,transform: 'translateX(40px)'}"
:transition="{ duration: 0.6,delay: 0.1}"
:while-in-view="{ opacity: 1,transform: 'translateX(0px)' }"
>
<TitleSection
subtitle="3D INTELLIGENT APIARY"
title="3D智慧蜂场"
/>
</Motion>
2025-10-23 15:30:21 +08:00
<img alt="" class="w-full lg:px-40 " src="/img/index/model2.b444287.gif">
</div>
2025-10-22 17:43:13 +08:00
</template>