Promotion.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. <template>
  2. <LayoutContainer>
  3. <v-row>
  4. <v-col col="12" :class="mdAndDown ? 'col-gestion' : 'col-gestion-md'">
  5. <div class="d-flex justify-center align-center flex-column">
  6. <v-icon size="6" class="fa-solid fa-circle icon-title" />
  7. <h5 class="subtitle">GESTION ET PROMOTION</h5>
  8. </div>
  9. <v-row>
  10. <p :class="smAndDown ? 'text-gestion-sm' : 'text-gestion'">
  11. <span class="span-color">Simplifiez</span>-vous la vie avec un outil
  12. <span class="d-inline-flex align-center">
  13. <v-img
  14. src="/images/Home_logiciel/ecole_de_musique-piano.jpg"
  15. :class="smAndDown ? 'rectangle-img-sm' : 'rectangle-img'"
  16. />
  17. </span>
  18. tout en un pour la gestion et la promotion
  19. <span class="d-inline-flex align-center">
  20. <v-img
  21. src="/images/Home_logiciel/ecole_de_danse-danseuse.jpg"
  22. :class="smAndDown ? 'rectangle-img-sm' : 'rectangle-img'"
  23. />
  24. </span>
  25. , de votre structure culturelle.
  26. <span class="d-inline-flex align-center">
  27. <v-img
  28. src="/images/Home_logiciel/ecole_de_cirque.jpg"
  29. :class="smAndDown ? 'rectangle-img-sm' : 'rectangle-img'"
  30. />
  31. </span>
  32. </p>
  33. </v-row>
  34. </v-col>
  35. </v-row>
  36. <v-row class="outil">
  37. <v-col cols="12">
  38. <v-img
  39. src="/images/home/écran.JPG"
  40. :class="[
  41. smAndDown ? 'screen-sm' : 'screen',
  42. !smAndDown && isZoomed ? 'zoom' : '',
  43. ]"
  44. @mouseover="zoomIn"
  45. @mouseleave="zoomOut"
  46. />
  47. <div class="play-icon-container">
  48. <i class="fas fa-play"></i>
  49. </div>
  50. </v-col>
  51. </v-row>
  52. <v-row>
  53. <v-col cols="12">
  54. <h3 class="text-center text-outil">
  55. Un outil complet et intuitif <br />
  56. pour chaque structure
  57. </h3>
  58. </v-col>
  59. </v-row>
  60. <v-row class="mb-6">
  61. <v-col cols="12" lg="6" md="12" sm="12">
  62. <div class="horizontal-line" />
  63. <v-row class="picto-container">
  64. <img src="/images/pictoHome/picto4.svg" class="picto" />
  65. <p class="text-outil-details">
  66. Logiciel de Gestion et communication en ligne
  67. </p>
  68. </v-row>
  69. <div class="horizontal-line" />
  70. <v-row class="picto-container">
  71. <img src="/images/pictoHome/picto3.svg" class="picto" />
  72. <p class="text-outil-details">Site Web intégré et simple d’usage</p>
  73. </v-row>
  74. <div class="horizontal-line" />
  75. </v-col>
  76. <v-col cols="12" lg="6" md="12" sm="12">
  77. <div class="horizontal-line" />
  78. <v-row class="picto-container">
  79. <img src="/images/pictoHome/picto1.svg" class="picto" />
  80. <p class="text-outil-details">
  81. Augmentez votre visibilité avec l'agenda culturel
  82. </p>
  83. </v-row>
  84. <div class="horizontal-line" />
  85. <v-row class="picto-container">
  86. <img src="/images/pictoHome/picto2.svg" class="picto" />
  87. <p class="text-outil-details">Communiquez en réseau</p>
  88. </v-row>
  89. <div class="horizontal-line" />
  90. </v-col>
  91. </v-row>
  92. </LayoutContainer>
  93. </template>
  94. <script setup>
  95. import { ref } from "vue";
  96. import { useDisplay } from "vuetify";
  97. const { smAndDown, mdAndDown } = useDisplay();
  98. const isZoomed = ref(false);
  99. const zoomIn = () => {
  100. isZoomed.value = true;
  101. };
  102. const zoomOut = () => {
  103. isZoomed.value = false;
  104. };
  105. </script>
  106. <style scoped>
  107. .outil {
  108. margin-bottom: -28rem;
  109. }
  110. .play-icon-container {
  111. position: absolute;
  112. top: 45%;
  113. left: 50%;
  114. transform: translate(-50%, -50%);
  115. font-size: 3rem;
  116. color: white;
  117. cursor: pointer;
  118. z-index: 100;
  119. }
  120. .text-gestion .d-inline-flex {
  121. vertical-align: middle;
  122. }
  123. .rectangle-img,
  124. .rectangle-img-sm {
  125. max-width: 100%;
  126. height: auto;
  127. }
  128. .rectangle-img-sm {
  129. width: 3.2rem;
  130. border-radius: 5rem;
  131. }
  132. .align-center {
  133. align-items: center;
  134. display: inline-flex;
  135. }
  136. .picto-container {
  137. display: flex;
  138. align-items: center;
  139. justify-content: center;
  140. margin-top: 1rem;
  141. margin-bottom: 1rem;
  142. }
  143. .horizontal-line {
  144. width: 80%;
  145. margin-left: auto;
  146. margin-right: auto;
  147. height: 1px;
  148. background-color: #d1cdc7;
  149. margin-bottom: 1rem;
  150. }
  151. .text-outil-sm {
  152. font-weight: 400;
  153. font-size: 22px;
  154. line-height: 26px;
  155. width: 19rem;
  156. color: #0e2d32;
  157. }
  158. .picto-group {
  159. display: flex;
  160. align-items: center;
  161. justify-content: center;
  162. margin-top: 1rem;
  163. margin-bottom: 1rem;
  164. }
  165. .picto-sm {
  166. margin-left: 4rem;
  167. width: 50px;
  168. height: 50px;
  169. margin-right: 2rem;
  170. }
  171. .picto {
  172. width: 50px;
  173. height: 50px;
  174. margin-right: 2rem;
  175. }
  176. .screen-sm {
  177. width: 100%;
  178. object-fit: cover;
  179. text-align: center;
  180. transition: transform 0.2s;
  181. }
  182. .screen {
  183. width: 900px;
  184. object-fit: cover;
  185. margin: 2rem auto;
  186. text-align: center;
  187. border-radius: 20px;
  188. transition: transform 0.2s;
  189. bottom: 30rem;
  190. }
  191. .screen:hover {
  192. transform: scale(1.1);
  193. }
  194. .subtitle {
  195. font-size: 1rem;
  196. line-height: 1rem;
  197. margin-top: 1rem;
  198. color: #c1eff0;
  199. text-align: center;
  200. letter-spacing: 2.16px;
  201. text-transform: uppercase;
  202. }
  203. .icon-title {
  204. margin-top: 1rem;
  205. color: #ffffff;
  206. margin-right: 1rem;
  207. }
  208. .with-border,
  209. .with-border-top {
  210. border-bottom: 1px solid #d1cdc7;
  211. padding-top: 1rem;
  212. padding-bottom: 1rem;
  213. }
  214. .with-border-top {
  215. border-top: 1px solid #d1cdc7;
  216. }
  217. .row-outil {
  218. margin-left: 4rem;
  219. }
  220. .text-outil-details {
  221. font-weight: 400;
  222. font-size: 22px;
  223. line-height: 26px;
  224. width: 25rem;
  225. color: #0e2d32;
  226. margin-bottom: 1rem;
  227. }
  228. .text-outil {
  229. font-weight: 400;
  230. font-size: 2rem;
  231. color: #0e2d32;
  232. margin-bottom: 3rem;
  233. }
  234. .col-gestion {
  235. margin-bottom: 4rem;
  236. background: #0e2d32;
  237. }
  238. .col-gestion-md {
  239. background: #0e2d32;
  240. margin-bottom: 4rem;
  241. }
  242. .text-gestion-sm {
  243. font-weight: 500;
  244. font-size: 2rem;
  245. line-height: 3.5rem;
  246. text-align: center;
  247. color: white;
  248. height: 10rem;
  249. width: 40rem;
  250. margin: 3rem 2rem 5rem;
  251. }
  252. .v-container {
  253. padding: 0;
  254. }
  255. .text-gestion {
  256. font-weight: 600;
  257. font-size: 3rem;
  258. text-align: center;
  259. color: white;
  260. height: 20rem;
  261. margin-top: 3rem;
  262. width: 45rem;
  263. margin: 2rem auto 28rem;
  264. }
  265. .span-color {
  266. color: #caf5f4;
  267. }
  268. .rectangle-img {
  269. width: 7rem;
  270. border-radius: 5rem;
  271. }
  272. </style>