Promotion.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  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="
  62. runtimeConfig.public.fileStorageBaseUrl +
  63. '/Video_Corporate_Opentalent-Agenda_et_logiciels_culturels.mp4'
  64. "
  65. type="video/mp4"
  66. />
  67. </video>
  68. </v-col>
  69. </v-row>
  70. <v-row class="outil center-90">
  71. <v-col>
  72. <v-row>
  73. <v-col>
  74. <h3>Un outil complet et intuitif pour chaque structure</h3>
  75. </v-col>
  76. </v-row>
  77. <v-row class="pictos">
  78. <v-col cols="12" lg="6">
  79. <v-row>
  80. <v-col cols="3">
  81. <img
  82. src="/images/pages/home/promotion/Logiciel_en_ligne_SaaS.svg"
  83. alt="Icône nuage cloud"
  84. />
  85. </v-col>
  86. <v-col cols="9">
  87. <p>Logiciel de gestion et communication en ligne</p>
  88. </v-col>
  89. </v-row>
  90. <v-row>
  91. <v-col cols="3">
  92. <img
  93. src="/images/pages/home/promotion/Site_internet_intégré.svg"
  94. alt="Icône site internet"
  95. />
  96. </v-col>
  97. <v-col cols="9">
  98. <p>Site web intégré et simple d’usage</p>
  99. </v-col>
  100. </v-row>
  101. </v-col>
  102. <v-col cols="12" lg="6">
  103. <v-row>
  104. <v-col cols="3">
  105. <img
  106. src="/images/pages/home/promotion/Visibilite_augmente_avec_l_agenda_culturel_Opentalent.svg"
  107. alt="Icône avion en papier"
  108. />
  109. </v-col>
  110. <v-col cols="9">
  111. <p>Augmentez votre visibilité avec l'agenda culturel</p>
  112. </v-col>
  113. </v-row>
  114. <v-row>
  115. <v-col cols="3">
  116. <img
  117. src="/images/pages/home/promotion/Icone_communication_en_reseau.svg"
  118. alt="Icône de deux enveloppes"
  119. />
  120. </v-col>
  121. <v-col cols="9">
  122. <p>Communiquez en réseau</p>
  123. </v-col>
  124. </v-row>
  125. </v-col>
  126. </v-row>
  127. </v-col>
  128. </v-row>
  129. </LayoutContainer>
  130. </template>
  131. <script setup lang="ts">
  132. const runtimeConfig = useRuntimeConfig()
  133. const playVideo: Ref<boolean> = ref(false)
  134. </script>
  135. <style scoped lang="scss">
  136. .highlight {
  137. color: var(--secondary-color);
  138. }
  139. .v-row.gestion {
  140. > .v-col {
  141. margin-bottom: 4rem;
  142. background: var(--primary-color);
  143. @media (max-width: 600px) {
  144. min-height: 550px;
  145. padding: 0 5%;
  146. }
  147. }
  148. .text-block {
  149. font-weight: 600;
  150. font-size: 3rem;
  151. text-align: center;
  152. color: var(--on-primary-color);
  153. height: 20rem;
  154. width: 45rem;
  155. margin: 2rem auto 28rem;
  156. @media (max-width: 600px) {
  157. padding: 0 5%;
  158. }
  159. }
  160. .inline-pic-container {
  161. display: inline-flex;
  162. justify-content: center;
  163. vertical-align: middle;
  164. }
  165. .v-img {
  166. height: 75px;
  167. width: 115px;
  168. max-width: 100%;
  169. border-radius: 5rem;
  170. }
  171. @media (max-width: 960px) {
  172. > .v-col {
  173. margin-bottom: 0;
  174. }
  175. .text-block {
  176. font-weight: 500;
  177. font-size: 2rem;
  178. line-height: 3.5rem;
  179. height: 10rem;
  180. width: 40rem;
  181. margin: 3rem auto 5rem;
  182. max-width: 100%;
  183. }
  184. .v-img {
  185. width: 3.2rem;
  186. border-radius: 5rem;
  187. }
  188. }
  189. }
  190. .v-row.demo {
  191. max-height: 350px;
  192. .v-col {
  193. display: flex;
  194. }
  195. @media (max-width: 1280px) {
  196. max-height: 1000px;
  197. }
  198. .screen {
  199. position: relative;
  200. width: 900px;
  201. max-width: 900px;
  202. height: 675px;
  203. object-fit: cover;
  204. margin: 2rem auto;
  205. text-align: center;
  206. border-radius: 20px;
  207. transition: transform 0.2s;
  208. bottom: 30rem;
  209. }
  210. video.screen {
  211. object-fit: contain;
  212. background: black;
  213. transform: scale(1.1);
  214. }
  215. @media (max-width: 1280px) {
  216. .screen {
  217. margin-top: -12px;
  218. bottom: 0;
  219. width: 100%;
  220. border-radius: 0;
  221. }
  222. }
  223. @media (min-width: 600px) {
  224. .screen:hover {
  225. transform: scale(1.1);
  226. }
  227. }
  228. .play-icon {
  229. position: absolute;
  230. top: 45%;
  231. left: 50%;
  232. transform: translate(-50%, -50%);
  233. font-size: 3rem;
  234. color: var(--on-primary-color);
  235. cursor: pointer;
  236. z-index: 100;
  237. }
  238. }
  239. .outil {
  240. margin-bottom: 36px;
  241. @media (max-width: 600px) {
  242. width: 90%;
  243. margin-left: auto;
  244. margin-right: auto;
  245. }
  246. h3 {
  247. color: var(--primary-color);
  248. font-size: 2rem;
  249. font-weight: 400;
  250. margin-bottom: 3rem;
  251. text-align: center;
  252. }
  253. .pictos {
  254. .v-row {
  255. border-bottom: solid 2px var(--on-neutral-color-extra-light);
  256. border-top: solid 2px var(--on-neutral-color-extra-light);
  257. margin: -2px 0 0;
  258. height: 100px;
  259. display: flex;
  260. align-items: center;
  261. justify-content: center;
  262. }
  263. > .v-col-12 {
  264. padding-top: 0;
  265. padding-bottom: 0;
  266. }
  267. .v-col-3 {
  268. display: flex;
  269. flex-direction: row;
  270. justify-content: flex-end;
  271. }
  272. img {
  273. width: 50px;
  274. height: 50px;
  275. margin-right: 2rem;
  276. @media (max-width: 600px) {
  277. margin-right: 0;
  278. }
  279. }
  280. p {
  281. font-weight: 400;
  282. font-size: 20px;
  283. line-height: 26px;
  284. width: 25rem;
  285. max-width: 100%;
  286. color: var(--primary-color);
  287. @media (max-width: 600px) {
  288. width: 90%;
  289. margin-bottom: 0;
  290. }
  291. }
  292. }
  293. }
  294. </style>