Skip to content

Instantly share code, notes, and snippets.

@mochki
Created April 24, 2023 17:31
Show Gist options
  • Save mochki/82237851b53558541fa22810027859a8 to your computer and use it in GitHub Desktop.
Save mochki/82237851b53558541fa22810027859a8 to your computer and use it in GitHub Desktop.
simple "extensions", just need these somewhere
window.addEventListener("keydown", e => {
if (e.keyCode == 37) {
$('video').currentTime = $('video').currentTime - 5;
}
if (e.keyCode == 39) {
$('video').currentTime = $('video').currentTime + 5;
}
});
// >>
// on loads...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment