Promotion.vue 6.0 KB

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