<html>
<head>
<script src="https://rawgithub.com/ai/autoprefixer-rails/master/vendor/autoprefixer.js"></script>
<meta name="description" content="pure scroll sidenav">
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, width=device-width, maximum-scale=1">
<title>pure scroll sidenav</title>
<style type="unprocessed" id="AutoprefixerIn">%css%</style>
<style id="AutoprefixerOut"></style>
<script>
AutoprefixerSettings = { browsers: ['last 2 versions'] };
document.getElementById("AutoprefixerOut").innerHTML = autoprefixer.process(document.getElementById("AutoprefixerIn").innerHTML, AutoprefixerSettings).css;
</script>
</head>
<body>
<div class="app app--slide">
<div class="app-bar">nav</div>
<div class="app-tray"><span id="menu">menu</span></div>
<div class="app-well">
<div class="app-panels">
<div class="panel panel--menu">
<div class="scrollport">
<div class="scrollbox">
<div class="content">menu</div>
</div>
</div>
</div>
<div class="panel panel--main">
<div class="panel-para">
<div class="panel-lax">
<div class="scrollport">
<div class="scrollbox">
<div class="content">
<p>website</p>
<p>Scroll left, pure native css scroll-snapping and perspective menu pullover. One could add js to add a shadow based upon how far pulled out the menu is on the scroll position, and even add a toggle menu button that leverages scroll-behavior smooth, to "animate" the menu.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
function setHeight() {
var HTML = document.documentElement;
var heightEl = document.createElement('div');
heightEl.style.visibility = 'hidden';
heightEl.style.position = 'absolute';
heightEl.style.height = '100vh';
HTML.appendChild(heightEl);
var heightElHeight = window.getComputedStyle(heightEl).height;
var ratioHeight = window.innerHeight / parseInt(heightElHeight,10);
if (ratioHeight !== 1) {
var newHeight = (ratioHeight * 100) + 'vh';
HTML.style.setProperty('--viewportHeight', newHeight);
}
HTML.removeChild(heightEl);
}
var app = document.querySelector('.app');
var appWell = document.querySelector('.app-well');
var appBar = document.querySelector('.app-bar');
var cycleCount = 0;
var appClasses = ['','app--fixed','app--slide'];
document.addEventListener('DOMContentLoaded', function() {
setHeight();
setTimeout(function(){
appWell.scrollLeft = appWell.scrollWidth - appWell.clientWidth;
appWell.style.scrollBehavior = 'smooth';
},10);
});
window.addEventListener("orientationchange", function() {
setHeight();
});
appBar.addEventListener("click",function(){
cycleClasses();
});
function cycleClasses() {
var newIndex = cycleCount % appClasses.length;
var newClass = 'app ' + appClasses[newIndex];
var newText = 'Click to cycle menu visual : ' + newClass;
app.className = newClass;
appBar.textContent = newText;
cycleCount++;
}
cycleClasses();
var menu = document.querySelector('#menu');
function trayClick() {
if (appWell.scrollLeft == 0) {
appWell.scrollTo(400,0);
} else {
appWell.scrollTo(0,0);
}
}
menu.addEventListener('click',function(){
trayClick();
});
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |