<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
</body>
</html><div>
<ul class="ani">
<li class="r1">1</li>
<li class="r2">2</li>
<li class="r3">3</li>
<li class="r4">4</li>
<li class="r5">5</li>
<li class="r6">6</li>
</ul>
</div>
*{margin:0px;padding:0px}
body{background-color:#000}
div{perspective:800;transform-style: preserve-3d;position:absolute;top:30%;left:50%;}
ul{position:absolute;left:0px;top:0px;transform:translate(-50%,-50%);width:200px;height:200px; transform-style: preserve-3d }
li{list-style-type:none;position:absolute;top:0px;left:0px;right:0px;bottom:0px;width:200px;height:200px;font-size:100px;text-align:center;line-height:200px;opacity:0.3;transition: transform 2s, opacity 2s;border:2px solid #C09;box-shadow:1px 1px 10px #C09; backface-visibility: visible;color:#fff}
.ani{ animation: rotaY 5s infinite linear;}
@-webkit-keyframes rotaY{
from{transform:rotateY(0deg) }
to{transform:rotateY(-360deg) }
}
@-webkit-keyframes rotaX{
from{transform:rotateX(0deg)}
to{transform:rotateX(-360deg)}
}
@-webkit-keyframes rotaZ{
from{transform:rotateZ(0deg)}
to{transform:rotateZ(-360deg)}
}
.r1{transform:translateZ(100px)}
.r2{transform:rotateY(90deg) translateZ(100px) }
.r3{transform: rotateY(180deg) translateZ(100px)}
.r4{transform: rotateY(-90deg)translateZ(100px) }
.r5{transform: rotateX(90deg) translateZ(100px) }
.r6{transform:rotateX(-90deg) translateZ(100px) }
Output
300px
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. |