| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <template>
- <LayoutNavigation />
- <div v-if="shouldShowStickyMenu" id="sticky-menu">
- <LayoutUIStickyMenu
- :shouldShowStickyMenu="shouldShowStickyMenu"
- :squaresData="squaresData"
- />
- </div>
- <HomeCaroussel />
-
- <HomePromotion />
- <!-- <HomeSolution /> -->
- <HomeEventAgenda />
- <HomeBesoin />
- <HomeReviews />
- <!-- <HomeNews /> -->
- <HomeHelp id="layout-footer"/>
- <LayoutPrefooter id="layout-footer"/>
- <LayoutFooter id="layout-footer"/>
- </template>
- <script setup>
- import { ref, onMounted } from "vue";
- const shouldShowStickyMenu = ref(true);
- const squaresData = [
- {
- id: 1,
- bgColor: "blue-square",
- iconClass: "fa-regular fa-comments icon",
- text: "Nous contacter",
- },
- {
- id: 2,
- bgColor: "blue-square",
- iconClass: "fa-solid fa-circle-info icon",
- text: "Demander une demo",
- },
- {
- id: 3,
- bgColor: "blue-square",
- iconClass: "fa-brands fa-readme icon",
- text: "Brochure",
- },
- {
- id: 4,
- bgColor: "darkblue-square",
- iconClass: "fa-solid fa-phone icon",
- text: "Nous Appeler",
- },
- ];
- onMounted(() => {
- const stickyMenu = document.getElementById("sticky-menu");
- const footer = document.getElementById("layout-footer");
- const observer = new IntersectionObserver(
- ([entry]) => {
- shouldShowStickyMenu.value = !entry.isIntersecting;
- },
- {
- root: null,
- threshold: 0,
- }
- );
- observer.observe(footer);
- });
- </script>
- <style scoped>
- #sticky-menu {
- position: sticky;
- top: 25rem;
- z-index: 1;
- margin-bottom: -30rem;
- float: right;
- }
- </style>
|