Promotion.vue 7.5 KB

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