Skip to content
This repository has been archived by the owner on Mar 24, 2023. It is now read-only.

Single video on click #138

Open
robertnicjoo opened this issue Dec 2, 2022 · 0 comments
Open

Single video on click #138

robertnicjoo opened this issue Dec 2, 2022 · 0 comments

Comments

@robertnicjoo
Copy link

How can I load single video by clicking on it?

<div v-on:click="startVideo(post.media_url)" class="ratio ratio-16x9">
    <video autoplay muted>
        <source :src="post.media_url" type="video/mp4">
    </video>
</div>

///////////

components: {
    CoolLightBox
},
methods: {
    startVideo(url) {
        var gallery = [{
            src: url,
            autoplay: true
        }];
        // Then what should be here to load video?
    },
}
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant