Home
Pricing
Support
Login
Get Started Today!
Create an account
Create an account and start using SkyChat
Name
Email
Password
I have read and agree to the
Terms & Conditions.
Have an account?
Login
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
More Templates
// assume player1, player2 and player3 are your Vimeo player objects let videoState = 'free'; player1.on('play', function() { if (videoState === 'free') { videoState = 'busy'; } else { player1.pause(); } }); player1.on('ended', function() { videoState = 'free'; }); player2.on('play', function() { if (videoState === 'free') { videoState = 'busy'; } else { player2.pause(); } }); player2.on('ended', function() { videoState = 'free'; }); player3.on('play', function() { if (videoState === 'free') { videoState = 'busy'; } else { player3.pause(); } }); player3.on('ended', function() { videoState = 'free'; });