Created
April 13, 2011 17:43
-
-
Save boazsender/918000 to your computer and use it in GitHub Desktop.
This file contains 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
<script src="http://code.jquery.org/jquery.js"></script> | |
<script src="https://github.com/cowboy/jquery-throttle-debounce/raw/master/jquery.ba-throttle-debounce.min.js"></script> | |
<script src="http://butterapp.org/butter/popcorn-js/popcorn.js"></script> | |
<script> | |
// Pause the video when the user hovers over one of the plugins | |
// for more than 500 milliseconds | |
$('.butter-plugin').hover( | |
$.debounce(500, function(e){ | |
$p.pause() | |
}), | |
function(){ | |
$p.play(); | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment