<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<div class="a">
<div class="red">
red
</div>
<div class="orange">
orange
</div>
<div class="yellow">
yellow
</div>
<div class="green">
green
</div>
</div>
</body>
</html>
* {
margin:0;
padding:0;
}
.a {
width:500px;
margin:100px auto;
perspective:400px;
perspective:400px;
perspective:400px;
}
.a>div {
width: 100px;
height: 200px;
float:left;
border:double 3px white;
text-align:center;
font: bold 1.2em/200px "Lucida Sans";
backface-visibility:hidden;
backface-visibility:hidden;
backface-visibility:hidden;
box-shadow:4px 5px 9px #444;
box-shadow:4px 5px 9px #444;
box-shadow:4px 5px 9px #444;
position:relative;
z-index:6;
}
.a>div:after {
content:"";
position: absolute;
top:101%;
left:-3px;
width:100%;
height:20%;
background:#444;
background:
linear-gradient(rgba(10,10,10,0.8),
rgba(50,50,50,0.3));
box-shadow:0 0 9px rgba(50,50,50,0.3);
z-index:-1;
}
.red {
background:red;
color:white;
transform-origin: 100% 0;
transform-origin: 100% 0;
transform-origin: 100% 0;
transform:
rotateX(-30deg);
transform:
rotateX(-30deg);
transform:
rotateX(-30deg);
}
.red:after {
content:none!important;
}
.orange {
background:orange;
color:white;
transform-origin:0 0;
transform:rotateY(30deg);
transform-origin:0 0;
transform:rotateY(30deg);
transform-origin:0 0;
transform:rotateY(30deg);
}
.orange:after {
transform-origin:0 0;
transform: rotateZ(-45deg) skewY(45deg);
transform-origin:0 0;
transform: rotateZ(-45deg) skewY(45deg);
transform-origin:0 0;
transform: rotateZ(-45deg) skewY(45deg);
height:70%!important;
}
.yellow {
background:yellow;
color:#f8a;
margin-left:-30px;
border-color:#faf!important;
transform-origin:100% 100%;
transform:rotateY(-30deg);
transform-origin:100% 100%;
transform:rotateY(-30deg);
transform-origin:100% 100%;
transform:rotateY(-30deg);
}
.yellow:after {
height:20px!important;
}
.green {
background:green;
color:white;
transform-origin:0 0;
transform:rotateX(30deg);
transform-origin:0 0;
transform:rotateX(30deg);
transform-origin:0 0;
transform:rotateX(30deg);
}
.green:after {
height:30px!important;
left:5%!important;
}
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. |