<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body bgcolor="#E6E6FA">
<div id="mainicons">
<a href="/"><i class="fa fa-home"></i><span>Home</span></a>
<a href="/ask"><i class="fa fa-envelope"></i><span>Ask</span></a>
<a href="/submit"><i class="fa fa-pencil "></i><span>Request</span></a>
<a href="/archive"><i class="fa fa-clock-o"></i><span>Archive</span></a>
</div>
</body>
</html>
#mainicons {
height: 50px;
width: 70px;
position: fixed;
top: 0px;
left: 0px;
text-align: center;
}
#mainicons>a {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
#mainicons i {
display: flex;
flex-direction: column;
height: 40px;
width: 50px;
padding: 10px;
color: #fff;
background: #CE9C87;
text-align: center;
font-size: 15px;
line-height: 40px;
transition: all .5s ease;
transition: all .5s ease;
transition: all .5s ease;
transition: all .5s ease;
}
#mainicons i:hover {
box-shadow: inset 7px 0px 0px 0px #CE9C87;
box-shadow: inset 7px 0px 0px 0px #CE9C87;
box-shadow: inset 7px 0px 0px 0px #CE9C87;
color: #CE9C87;
background: #fff;
transition: all .5s ease;
transition: all .5s ease;
transition: all .5s ease;
transition: all .5s ease;
}
#mainicons span {
color: #CE9C87;
background: #fff;
width: 100%;
height: 100%;
z-index: -1;
font-size: 15px;
position: absolute;
display: flex;
align-items: center;
justify-content: center;
left: -100px;
transition: all .5s ease;
transition: all .5s ease;
transition: all .5s ease;
transition: all .5s ease;
}
#mainicons a:hover>span {
left: 70px;
}
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. |