|
@@ -45,12 +45,30 @@
|
|
|
<v-row class="demo">
|
|
<v-row class="demo">
|
|
|
<v-col>
|
|
<v-col>
|
|
|
<v-img
|
|
<v-img
|
|
|
|
|
+ v-if="playVideo"
|
|
|
src="/images/pages/home/promotion/Ordinateur_portable_avec_ecran_logiciel_Opentalent.jpg"
|
|
src="/images/pages/home/promotion/Ordinateur_portable_avec_ecran_logiciel_Opentalent.jpg"
|
|
|
alt="Vidéo corporate de l’entreprise Opentalent"
|
|
alt="Vidéo corporate de l’entreprise Opentalent"
|
|
|
class="screen"
|
|
class="screen"
|
|
|
>
|
|
>
|
|
|
- <v-icon v-show="false" icon="fas fa-play" class="play-icon" />
|
|
|
|
|
|
|
+ <v-icon
|
|
|
|
|
+ icon="fas fa-play"
|
|
|
|
|
+ class="play-icon"
|
|
|
|
|
+ @click="playVideo = true"
|
|
|
|
|
+ />
|
|
|
</v-img>
|
|
</v-img>
|
|
|
|
|
+
|
|
|
|
|
+ <video v-else controls muted autoPlay>
|
|
|
|
|
+ <source
|
|
|
|
|
+ src="/storage/Video_Corporate_Opentalent-Agenda_et_logiciels_culturels.mp4"
|
|
|
|
|
+ type="video/mp4"
|
|
|
|
|
+ class="screen"
|
|
|
|
|
+ />
|
|
|
|
|
+ <meta itemprop="name" content="Vidéo corporate Opentalent" />
|
|
|
|
|
+ <meta
|
|
|
|
|
+ itemprop="description"
|
|
|
|
|
+ content="Vidéo corporate Opentalent, découvrez l’histoire de l’entreprise, son agenda et ses logiciels culturels"
|
|
|
|
|
+ />
|
|
|
|
|
+ </video>
|
|
|
</v-col>
|
|
</v-col>
|
|
|
</v-row>
|
|
</v-row>
|
|
|
|
|
|
|
@@ -120,7 +138,9 @@
|
|
|
</LayoutContainer>
|
|
</LayoutContainer>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
-<script setup lang="ts"></script>
|
|
|
|
|
|
|
+<script setup lang="ts">
|
|
|
|
|
+const playVideo: Ref<boolean> = ref(false)
|
|
|
|
|
+</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|
|
|
.highlight {
|
|
.highlight {
|