NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
Run these functions in your browser console.
Includes a CSS or JS file onto the page.
Returns a promise that resolves when the CSS/JS file has finished loading.
u.include('//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js').then(function() {
// do something with $ or jQuery
});
Flips the video about an axis.
Defaults to the y-axis if one isn't specified.
Pauses the video.
Plays the video.
Getter/setter for the video's loop
property.
Set to true
to make the video loop.
Getter/setter for the video's playbackRate
property.
u.speed = 3; // Speed up the video by 3x
Reference to the <video>
element. See HTMLVideoElement, HTMLMediaElement, HTMLElement, and Element for available methods and properties.
Rating: 0