Promotion.vue 6.1 KB

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