Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<title>Viewer 2D - SLAcer.js (bêta)</title> | |
<style> | |
html, body, #slice { | |
border: 0; | |
margin: 0; | |
padding: 0; | |
width: 100%; | |
height: 100%; | |
overflow: hidden; | |
} | |
body { | |
background-color: #000000; | |
} | |
#slice { | |
background-position: center; | |
background-repeat: no-repeat; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="slice"></div> | |
<script src="vendor/lodash.min.js" type="text/javascript"></script> | |
<script src="js/slacer/settings.js" type="text/javascript"></script> | |
<script> | |
function storageListener() { | |
var settings = new SLAcer.Settings(); | |
var dataURL = settings.get('slice.dataURL', 'none'); | |
var image = dataURL !== 'none' ? 'url(' + dataURL + ')' : 'none'; | |
var slice = document.getElementById('slice'); | |
slice.style.backgroundImage = image; | |
} | |
window.addEventListener('storage', storageListener, false); | |
</script> | |
</body> | |
</html> |