| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- <template>
- <div id="témoignages">
- <LayoutContainer>
- <div class="container-green">
- <v-row>
- <v-col cols="4">
- <h3 class="reviews-title">
- C'est eux qui en parlent le mieux
- </h3>
- <div class="d-flex justify-center align-center">
- <div
- class="carousel-button"
- @click="goPrevious"
- >
- <i class="fas fa-chevron-left" />
- </div>
- <div
- class="carousel-button"
- @click="goNext"
- >
- <i class="fas fa-chevron-right" />
- </div>
- </div>
- </v-col>
- <v-col cols="8">
- <Carousel
- ref="carousel"
- :items-to-show="3"
- :items-to-scroll="1"
- >
- <Slide
- v-for="(card, index) in cards"
- :key="index"
- class="card"
- >
- <div class="card-container">
- <v-card>
- <v-card-item>
- <v-card-text class="review-description">
- {{ card.description }}
- </v-card-text>
- <div class="card-footer">
- <v-card-actions class="reviewer-name">
- {{ card.name }}
- </v-card-actions>
- <p class="reviewer-status">
- {{ card.status }}
- </p>
- <p class="reviewer-structure">
- {{ card.structure }}
- </p>
- </div>
- </v-card-item>
- </v-card>
- </div>
- </Slide>
- </Carousel>
- </v-col>
- </v-row>
- </div>
- </LayoutContainer>
- </div>
- </template>
- <script setup>
- import { ref } from "vue";
- import { Carousel, Slide } from "vue3-carousel";
- import "vue3-carousel/dist/carousel.css";
- const carousel = ref(null);
- const goPrevious = () => {
- carousel.value.prev();
- };
- const goNext = () => {
- carousel.value.next();
- };
- const cards = [
- {
- description:
- "Lorem ipsum dolor sit amet consectetur adipisicing elit.Provident porro fuga incidunt quae, doloremque tenetur aliquam exercitationem deleniti aspernatur illo rem deserunt sapiente empore dolorem ipsa aliquid vel nihil eius.",
- name: "Laurent Lebon",
- status: "Chef d'orchestre",
- structure: "Conservatoire de Lyon",
- },
- {
- description:
- "Lorem ipsum dolor sit amet consectetur adipisicing elit.Provident porro fuga incidunt quae, doloremque tenetur aliquam exercitationem deleniti aspernatur illo rem deserunt sapiente empore dolorem ipsa aliquid vel nihil eius.",
- name: "Laurent Lebon",
- status: "Chef d'orchestre",
- structure: "Conservatoire de Lyon",
- },
- {
- description:
- "Lorem ipsum dolor sit amet consectetur adipisicing elit.Provident porro fuga incidunt quae, doloremque tenetur aliquam exercitationem deleniti aspernatur illo rem deserunt sapiente empore dolorem ipsa aliquid vel nihil eius.",
- name: "Laurent Lebon",
- status: "Chef d'orchestre",
- structure: "Conservatoire de Lyon",
- },
- {
- description:
- "Lorem ipsum dolor sit amet consectetur adipisicing elit.Provident porro fuga incidunt quae, doloremque tenetur aliquam exercitationem deleniti aspernatur illo rem deserunt sapiente empore dolorem ipsa aliquid vel nihil eius.",
- name: "Laurent Lebon",
- status: "Chef d'orchestre",
- structure: "Conservatoire de Lyon",
- },
- {
- description:
- "Lorem ipsum dolor sit amet consectetur adipisicing elit.Provident porro fuga incidunt quae, doloremque tenetur aliquam exercitationem deleniti aspernatur illo rem deserunt sapiente empore dolorem ipsa aliquid vel nihil eius.",
- name: "Laurent Lebon",
- status: "Chef d'orchestre",
- structure: "Conservatoire de Lyon",
- },
- ];
- </script>
- <style scoped>
- .carousel-button {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 40px;
- height: 40px;
- background-color: transparent;
- border: 2px solid #fff;
- cursor: pointer;
- margin-right: 1rem;
- margin-top: 4rem;
- }
- .carousel-button i {
- color: #fff;
- }
- .reviewer-name {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 20px;
- line-height: 24px;
- color: #e34461;
- }
- .reviewer-status {
- font-family: "Barlow";
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 12px;
- line-height: 16px;
- display: flex;
- align-items: center;
- letter-spacing: 0.18em;
- text-transform: uppercase;
- }
- .reviewer-structure {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 300;
- font-size: 0.8rem;
- line-height: 14px;
- display: flex;
- align-items: center;
- margin-bottom: 1rem;
- color: #071b1f;
- }
- .review-description {
- text-align: left;
- }
- .card-footer {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- margin-left: 5.5rem;
- margin-top: 3rem;
- }
- .card-text {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 300;
- font-size: 1rem;
- line-height: 1rem;
- margin-left: 1.5rem;
- margin-right: 1.5rem;
- height: 12rem;
- }
- .reviews-title {
- font-size: 2rem;
- font-weight: 700;
- color: #fff;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 42px;
- line-height: 42px;
- margin-left: 3rem;
- margin-right: 3rem;
- margin-top: 5rem;
- text-align: center;
- }
- .card {
- width: 80rem;
- margin-left: 0.5rem;
- border-radius: 1rem;
- }
- .card-container {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 5rem;
- margin-bottom: 3rem;
- margin-right: 2rem;
- }
- .container-green {
- background-color: #0e2d32;
- }
- </style>
|