<html lang="en" class="js">
<head>
<meta charset="utf-8">
<title>vices</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<style>
* {
box-sizing: border-box;
box-sizing: border-box;
}
.carousel .control-dots {
position: absolute;
bottom: 0;
margin: 10px 0;
padding: 0;
text-align: center;
width: 100%;
z-index: 1;
}
.carousel .control-dots {
position: absolute;
bottom: 0;
margin: 10px 0;
padding: 0;
text-align: center;
width: 100%;
z-index: 1;
}
.slick-animated-dots {
position: absolute;
overflow: hidden;
left: 0;
top: 30px;
list-style: none;
display: flexbox;
display: flex;
flex-direction: row;
flex-wrap: none;
/* flex-flow: row nowrap; */
flex-pack: center;
justify-content: center;
flex-align: center;
align-items: center;
text-align: center;
padding: 0;
margin: 0;
width: 100%;
}
.slick-animated-dots li {
position: relative;
display: inline-flexbox;
display: inline-flex;
flex-direction: row;
flex-wrap: none;
flex-flow: row nowrap;
flex-pack: center;
justify-content: center;
flex-align: center;
align-items: center;
height: 10px;
width: 36px;
margin: 0 3px;
padding: 0;
cursor: pointer;
}
.slick-animated-dots li button {
box-sizing: border-box;
margin: 0 auto;
border: 1px solid rgba(255,255,255,0.6);
border-radius: 4px;
background: transparent;
display: block;
height: 6px;
width: 32px;
outline: none;
line-height: 0px;
font-size: 0px;
color: transparent;
cursor: pointer;
opacity: 1;
transition: background 200ms linear,border-color 200ms linear;
overflow: hidden;
}
.slick-animated-dots li.slick-active button {
background: transparent;
opacity: 1;
}
</style>
</head>
<body class="f20 f20v0 ready" style="background: red;height:100vh;width: 100vw">
<ul class="control-dots slick-animated-dots cwidth init">
<li class="slick-active" value="0" role="button">
<button type="button" aria-pressed="false" role="tab" class=""><span></span></button>
</li>
<li class="" value="1" role="button">
<button type="button" aria-pressed="false" role="tab" class=""><span></span></button>
</li>
<li class="" value="2" role="button">
<button type="button" aria-pressed="false" role="tab" class=""><span></span></button>
</li>
</ul>
</body>
</html>
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. |