<html>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div class="nav">
<ul>
<li>
<a href="#">Home</a>
</li>
<li class="">
<a href="#">Veggie made</a>
<ul class="cbp-tm-submenu">
<li><a href="#">Sorrel desert</a></li>
<li><a href="#">Raisin kakadu</a></li>
<li><a href="#">Plum salsify</a></li>
<li><a href="#">Bok choy celtuce</a></li>
<li><a href="#">Onion endive</a></li>
<li><a href="#">Bitterleaf</a></li>
<li><a href="#">Sea lettuce</a></li>
</ul>
</li>
<li class="">
<a href="#">Pepper tatsoi</a>
<ul>
<li><a href="#">Brussels sprout</a></li>
<li><a href="#">Kakadu lemon</a></li>
<li><a href="#">Juice green</a></li>
<li><a href="#">Wine fruit</a></li>
<li><a href="#">Garlic mint</a></li>
<li><a href="#">Zucchini garnish</a></li>
<li><a href="#">Sea lettuce</a></li>
</ul>
</li>
<li class="">
<a href="#">Sweet melon</a>
<ul>
<li><a href="#">Sorrel desert</a></li>
<li><a href="#">Raisin kakadu</a></li>
<li><a href="#">Plum salsify</a></li>
<li><a href="#">Bok choy celtuce</a></li>
<li><a href="#">Onion endive</a></li>
<li><a href="#">Bitterleaf</a></li>
</ul>
</li>
</ul>
</div>
</body>
</html>
ul, li {
list-style: none;
padding: 0;
margin: 0;
}
a {
text-decoration: none;
color: #444;
}
.nav {
background-color: #00adcc;
position: fixed;
padding: 5px;
width: 220px;
height: 100%;
}
.nav a {
display: block;
color: #fff;
padding: 6px 12px;
border: 1px solid #fff;
border-radius: 3px;
margin-bottom: 5px;
position: relative;
}
.nav li {
position: relative;
}
.nav ul ul {
transition: .3s;
transition: .3s;
opacity: 0;
visibility: hidden;
position: absolute;
background-color: #00adcc;
padding: 5px 5px 2px;
left: 110%;
width: 100%;
top: -5px;
}
.nav ul li:hover ul {
transition: .3s 1s;
transition: .3s 1s;
opacity: 1;
visibility: visible;
left: 100%;
}
.nav ul ul a {
margin: 0 0 3px 0;
}
Output
300px
This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account
Dismiss xKeyboard 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. |