| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <template>
- <div :class="stickyClass">
- <v-row class="outil-row">
- <v-col cols="12">
- <div class="container-square">
- <v-row
- v-for="square in squares"
- :key="square.id"
- :class="['square', square.bgColor]"
- @click="() => handleSquareClick(square)"
- >
- <NuxtLink :to="square.url" class="link">
- <div>
- <v-icon :class="square.iconClass" />
- <p class="text-square mt-2">{{ square.text }}</p>
- </div>
- </NuxtLink>
- </v-row>
- </div>
- </v-col>
- </v-row>
- </div>
- </template>
- <script setup lang="ts">
- import { ref, defineProps } from "vue";
- import { useRouter } from "vue-router";
- const router = useRouter();
- const props = defineProps({
- shouldShowStickyMenu: Boolean,
- squaresData: Array,
- });
- const stickyClass = ref("sticky-scroll");
- const squares = ref(props.squaresData);
- const telephoneNumber = "09 72 12 60 17";
- const handleSquareClick = (square) => {
- if (square.id === 2) {
- router.push({ path: square.url, query: { request: "demo" } });
- } else if (square.id === 4) {
- if (isMobileDevice()) {
- window.location.href = `tel:${telephoneNumber}`;
- } else {
- alert(`Notre numéro de téléphone : ${telephoneNumber}`);
- }
- } else {
- router.push({ path: square.url });
- }
- };
- const isMobileDevice = () => {
- return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
- navigator.userAgent
- );
- };
- </script>
- <style scoped>
- .square {
- transition: transform 0.3s ease-in-out;
- }
- .square:hover {
- transform: translateX(-10px);
- }
- .link {
- text-decoration: none;
- color: white;
- }
- .container-square {
- text-align: center !important;
- display: flex;
- flex-direction: column;
- color: white;
- font-weight: 500;
- font-size: 0.7rem;
- line-height: 15px;
- text-align: center;
- letter-spacing: 0.2em;
- text-transform: uppercase;
- }
- .red-square,
- .yellow-square,
- .blue-square,
- .darkblue-square,
- .green-square {
- position: relative;
- font-family: "Barlow";
- width: 7rem;
- padding: 1rem;
- cursor: pointer;
- }
- .yellow-square {
- background: rgb(250, 194, 10);
- color: #0e2d32;
- }
- .green-square {
- background: #9edbdd;
- }
- .red-square {
- background: #d8050b;
- }
- .blue-square {
- background: var(--Bleu-School-60, rgba(32, 147, 190));
- }
- .darkblue-square {
- background: #0e2d32;
- }
- .text-square {
- }
- </style>
|