Skip to content

Instantly share code, notes, and snippets.

@xriss
xriss / index.html
Last active September 16, 2016 21:00
Bouncing Ball// source http://jsbin.com/lagahi
<html>
<head>
<title>Bouncing Ball</title>
<script data-pace-options='{ "eventLag": false }' src="https://cdnjs.cloudflare.com/ajax/libs/pace/1.0.2/pace.min.js"></script>
<style>
.pace .pace-progress { height:4px; background:#88f; position:fixed; z-index:9999; top:0; right:100%; width:100%; }
.pace-inactive { display:none; }
.pace { -webkit-pointer-events:none; pointer-events:none; -webkit-user-select:none; -moz-user-select:none; user-select:none; }
</style>
</head>