Promotion.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. <template>
  2. <LayoutContainer>
  3. <v-row class="gestion">
  4. <v-col>
  5. <LayoutUISectionTitle class="alt-theme">
  6. GESTION ET PROMOTION
  7. </LayoutUISectionTitle>
  8. <v-row>
  9. <v-col>
  10. <div class="text-block">
  11. <span class="highlight">Simplifiez</span>-vous la vie avec un
  12. outil
  13. <span class="inline-pic-container">
  14. <v-img
  15. src="/images/pages/home/promotion/Visuel_d_un_Pianiste.png"
  16. alt="Vignette d’une personne jouant sur un piano"
  17. />
  18. </span>
  19. tout-en-un pour la gestion et la promotion
  20. <span class="inline-pic-container">
  21. <v-img
  22. src="/images/pages/home/promotion/Visuel_de_Danseuse.png"
  23. alt="Vignette d’une danseuse"
  24. />
  25. </span>
  26. de votre structure culturelle.
  27. <span class="inline-pic-container">
  28. <v-img
  29. src="/images/pages/home/promotion/Visuel_d_un_Comedien.PNG"
  30. alt="Vignette d’un homme faisant un spectacle de mime dans une salle de spectacle"
  31. />
  32. </span>
  33. </div>
  34. </v-col>
  35. </v-row>
  36. </v-col>
  37. </v-row>
  38. <v-row class="demo">
  39. <v-col>
  40. <v-img
  41. v-if="!playVideo"
  42. src="/images/pages/home/promotion/Ordinateur_portable_avec_ecran_logiciel_Opentalent.jpg"
  43. alt="Vidéo corporate de l’entreprise Opentalent"
  44. class="screen"
  45. >
  46. <v-icon
  47. icon="fas fa-play"
  48. class="play-icon"
  49. @click="playVideo = true"
  50. />
  51. </v-img>
  52. <!-- <video
  53. v-else
  54. controls
  55. autoPlay
  56. class="screen"
  57. aria-label="Vidéo corporate Opentalent"
  58. aria-description="Vidéo corporate Opentalent : découvrez l’histoire de l’entreprise, son agenda et ses logiciels culturels"
  59. >
  60. <source
  61. src="/storage/Video_Corporate_Opentalent-Agenda_et_logiciels_culturels.mp4"
  62. type="video/mp4"
  63. />
  64. </video> -->
  65. </v-col>
  66. </v-row>
  67. <v-row class="outil center-90">
  68. <v-col>
  69. <v-row>
  70. <v-col>
  71. <h3>Un outil complet et intuitif pour chaque structure</h3>
  72. </v-col>
  73. </v-row>
  74. <v-row class="pictos">
  75. <v-col cols="12" lg="6">
  76. <v-row>
  77. <v-col cols="3">
  78. <img
  79. src="/images/pages/home/promotion/Logiciel_en_ligne_SaaS.svg"
  80. alt="Icône nuage cloud"
  81. />
  82. </v-col>
  83. <v-col cols="9">
  84. <p>Logiciel de gestion et communication en ligne</p>
  85. </v-col>
  86. </v-row>
  87. <v-row>
  88. <v-col cols="3">
  89. <img
  90. src="/images/pages/home/promotion/Site_internet_intégré.svg"
  91. alt="Icône site internet"
  92. />
  93. </v-col>
  94. <v-col cols="9">
  95. <p>Site web intégré et simple d’usage</p>
  96. </v-col>
  97. </v-row>
  98. </v-col>
  99. <v-col cols="12" lg="6">
  100. <v-row>
  101. <v-col cols="3">
  102. <img
  103. src="/images/pages/home/promotion/Visibilite_augmente_avec_l_agenda_culturel_Opentalent.svg"
  104. alt="Icône avion en papier"
  105. />
  106. </v-col>
  107. <v-col cols="9">
  108. <p>Augmentez votre visibilité avec l'agenda culturel</p>
  109. </v-col>
  110. </v-row>
  111. <v-row>
  112. <v-col cols="3">
  113. <img
  114. src="/images/pages/home/promotion/Icone_communication_en_reseau.svg"
  115. alt="Icône de deux enveloppes"
  116. />
  117. </v-col>
  118. <v-col cols="9">
  119. <p>Communiquez en réseau</p>
  120. </v-col>
  121. </v-row>
  122. </v-col>
  123. </v-row>
  124. </v-col>
  125. </v-row>
  126. </LayoutContainer>
  127. </template>
  128. <script setup lang="ts">
  129. const playVideo: Ref<boolean> = ref(false)
  130. </script>
  131. <style scoped lang="scss">
  132. .highlight {
  133. color: var(--secondary-color);
  134. }
  135. .v-row.gestion {
  136. > .v-col {
  137. margin-bottom: 4rem;
  138. background: var(--primary-color);
  139. @media (max-width: 600px) {
  140. min-height: 430px;
  141. padding: 0 5%;
  142. }
  143. }
  144. .text-block {
  145. font-weight: 600;
  146. font-size: 3rem;
  147. text-align: center;
  148. color: var(--on-primary-color);
  149. height: 20rem;
  150. width: 45rem;
  151. margin: 2rem auto 28rem;
  152. @media (max-width: 600px) {
  153. padding: 0 5%;
  154. }
  155. }
  156. .inline-pic-container {
  157. display: inline-flex;
  158. justify-content: center;
  159. vertical-align: middle;
  160. }
  161. .v-img {
  162. height: 75px;
  163. width: 115px;
  164. max-width: 100%;
  165. border-radius: 5rem;
  166. }
  167. @media (max-width: 960px) {
  168. > .v-col {
  169. margin-bottom: 0;
  170. }
  171. .text-block {
  172. font-weight: 500;
  173. font-size: 2rem;
  174. line-height: 3.5rem;
  175. height: 10rem;
  176. width: 40rem;
  177. margin: 3rem auto 5rem;
  178. max-width: 100%;
  179. }
  180. .v-img {
  181. width: 3.2rem;
  182. border-radius: 5rem;
  183. }
  184. }
  185. }
  186. .v-row.demo {
  187. max-height: 350px;
  188. .v-col {
  189. display: flex;
  190. }
  191. @media (max-width: 1280px) {
  192. max-height: 1000px;
  193. }
  194. .screen {
  195. position: relative;
  196. width: 900px;
  197. max-width: 900px;
  198. height: 675px;
  199. object-fit: cover;
  200. margin: 2rem auto;
  201. text-align: center;
  202. border-radius: 20px;
  203. transition: transform 0.2s;
  204. bottom: 30rem;
  205. }
  206. video.screen {
  207. object-fit: contain;
  208. background: black;
  209. transform: scale(1.1);
  210. }
  211. @media (max-width: 1280px) {
  212. .screen {
  213. margin-top: -12px;
  214. bottom: 0;
  215. width: 100%;
  216. border-radius: 0;
  217. }
  218. }
  219. @media (min-width: 600px) {
  220. .screen:hover {
  221. transform: scale(1.1);
  222. }
  223. }
  224. .play-icon {
  225. position: absolute;
  226. top: 45%;
  227. left: 50%;
  228. transform: translate(-50%, -50%);
  229. font-size: 3rem;
  230. color: var(--on-primary-color);
  231. cursor: pointer;
  232. z-index: 100;
  233. }
  234. }
  235. .outil {
  236. margin-bottom: 36px;
  237. @media (max-width: 600px) {
  238. width: 90%;
  239. margin-left: auto;
  240. margin-right: auto;
  241. }
  242. h3 {
  243. color: var(--primary-color);
  244. font-size: 2rem;
  245. font-weight: 400;
  246. margin-bottom: 3rem;
  247. text-align: center;
  248. }
  249. .pictos {
  250. .v-row {
  251. border-bottom: solid 2px var(--on-neutral-color-extra-light);
  252. border-top: solid 2px var(--on-neutral-color-extra-light);
  253. margin: -2px 0 0;
  254. height: 100px;
  255. display: flex;
  256. align-items: center;
  257. justify-content: center;
  258. }
  259. > .v-col-12 {
  260. padding-top: 0;
  261. padding-bottom: 0;
  262. }
  263. .v-col-3 {
  264. display: flex;
  265. flex-direction: row;
  266. justify-content: flex-end;
  267. }
  268. img {
  269. width: 50px;
  270. height: 50px;
  271. margin-right: 2rem;
  272. @media (max-width: 600px) {
  273. margin-right: 0;
  274. }
  275. }
  276. p {
  277. font-weight: 400;
  278. font-size: 20px;
  279. line-height: 26px;
  280. width: 25rem;
  281. max-width: 100%;
  282. color: var(--primary-color);
  283. @media (max-width: 600px) {
  284. width: 90%;
  285. margin-bottom: 0;
  286. }
  287. }
  288. }
  289. }
  290. </style>