<!-- Include the SDK -->
<script src="./node_modules/ads-reels-player/dist/index.umd.js"></script>
<!-- OR use CDN -->
<script src="https://unpkg.com/ads-reels-player@latest/dist/index.umd.js"></script>
<script>
// Create and use the player
const player = new VideoPlayerSDK({
key: 'demo-1',
position: 'bottom-right',
width: '320px',
height: '480px'
});
player.init();
</script>
๐งช Live Demo
๐ Available Video Keys
demo-1 - "Discover Amazing Features - Limited Time Offer"
demo-2 - "New Collection Launch - Get 20% Off"
demo-3 - "Join Our Community - Exclusive Benefits"
video-1 - "Big Buck Bunny"
video-2 - "Elephants Dream"
video-3 - "For Bigger Blazes"
๐ฏ Usage Examples
Basic Usage
const player = new VideoPlayerSDK({ key: 'demo-1' });
player.init();
Multiple Videos
const player = new VideoPlayerSDK({
keys: ['demo-1', 'demo-2', 'demo-3'],
showNavigation: true,
position: 'center'
});
player.init();
Custom Video
const player = new VideoPlayerSDK({
videoData: {
video: 'https://example.com/video.mp4',
title: 'My Video Title',
video_routing_link: 'https://example.com/action',
button_text: 'Click Here'
}
});
player.init();