Question:
I have a question regarding video management in the Online Program’s Basic Info section. If I upload a 5-minute video in the backend, how can I display only a 15-second preview on the frontend?
Product:
Wix Online Program
What I have helped?
// Code for your Wix site
import wixMedia from ‘wix-media’;
import wixLocation from ‘wix-location’;
$w.onReady(function () {
// Set the source for the preview video
$w(“#videoPreview”).src = “https://static.wixstatic.com/media/yourPreviewVideo.mp4”; // Replace with your preview video URL
$w(“#videoPreview”).play();
// When the preview video ends, loop it or take any action
$w("#videoPreview").onEnded(() => {
$w("#videoPreview").play(); // This will loop the preview video
});
// Link to the full video
$w("#fullVideoButton").onClick(() => {
wixLocation.to("https://static.wixstatic.com/media/yourFullVideo.mp4"); // Replace with your full video URL
});
});