Promotion.vue 7.4 KB

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