Video Box for Portfolio?

Question:
Is there a way to link a full screen video playback to a video box? I am making a video portfolio website. I like using the video box cuz there are more control than Pro Gallary, but I can’t seem to find the way to create the link so I can have a light box appear and play a video (Youtube or vimeo link) from Video Box.

Product:
Wix Studio

What are you trying to achieve:
tring to make video portofolio.

What have you already tried:
[Share resources, forum topics, articles, or tutorials you’ve already used to try and answer your question.]

Additional information:
[Include any other pertinent details or information that might be helpful for people to know when trying to answer your question.]

you could code it

import wixWindow from 'wix-window';
import { getVideoPlaybackUrl } from 'wix-media-backend';

$w.onReady(function () {
    $w("#myVideoBox").onClick(async () => {
        const videoId = $w("#myVideoBox").video; // replace "myVideoBox" with your VideoBox's ID
        const videoUrl = await getVideoPlaybackUrl(videoId);
        wixWindow.lightbox.open('myLightbox'); // replace "myLightbox" with your lightbox's name
        $w("#myVideoPlayer").src = videoUrl; // replace "myVideoPlayer" with your VideoPlayer's ID in the lightbox
        $w("#myVideoPlayer").play();
    });
});