Created
January 24, 2017 19:06
-
-
Save boertel/6cd81c1e22cc82f1fbeb418c8742356a to your computer and use it in GitHub Desktop.
j/k for instagram
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var index = 0; | |
function navigate(evt) { | |
var media = document.getElementsByTagName('article')[index]; | |
if (media) { | |
index += (evt.key === 'j' ? 1 : (evt.key === 'k' ? -1 : 0)); | |
media.scrollIntoView(); | |
} | |
} | |
window.addEventListener('keydown', navigate); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment