<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<div class="container">
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="wall"></div>
</div>
</body>
</html>
* {
margin:0;
padding:0;
}
body {
margin:200px 0 0 50px;
min-width:500px;
}
.wall {
display:inline-block;
height:100px;
width:10px;
background:red;
vertical-align:middle;
}
.sphere {
display:inline-block;
vertical-alшgn:middle;
margin-right:50px;
width:50px;
height:50px;
border-radius:50%;
background: #878;
box-shadow: inset 0 1px 3px white,
inset 0 -5px 5px #767,
0 5px 6px -2px #000;
box-shadow: inset 0 1px 3px white,
inset 0 -5px 5px #767,
0 5px 6px -2px #000;
box-shadow: inset 0 1px 3px white,
inset 0 -5px 5px #767,
0 5px 6px -2px #000;
position:relative;
animation: move 0.5s ease-in-out,
pause 0.5s ease-in-out,
move4 0.5s ease-in-out;
animation: move 0.5s ease-in-out,
pause 0.5s ease-in-out,
move4 0.5s ease-in-out;
}
.sphere:before {
content:"";
position:absolute;
width:15px;
height:10px;
border-radius:inherit;
background:white;
left:50%;
top:25%;
margin-left:-10px;
box-shadow:0 0 10px white;
box-shadow:0 0 10px white;
box-shadow:0 0 10px white;
}
.sphere:nth-child(1) {
animation-delay:0, 0.5s, 3.5s ;
animation-duration: 0.5s, 3s, 0.5s;
animation-delay:0, 0.5s, 3.5s ;
animation-duration: 0.5s, 3s, 0.5s;
}
.sphere:nth-child(2) {
animation-delay:0.5s, 1s, 3s;
animation-duration: 0.5s, 2s, 0.5s;
animation-delay:0.5s, 1s, 3s;
animation-duration: 0.5s, 2s, 0.5s;
}
.sphere:nth-child(3) {
animation-delay:1s, 1.5s, 2.5s;
animation-duration: 0.5s, 1s, 0.5s;
animation-delay:1s, 1.5s, 2.5s;
animation-duration: 0.5s, 1s, 0.5s;
}
.sphere:nth-child(4) {
animation-delay:1.5s, 2s, 2s;
animation-duration: 0.5s, 0, 0.5s;
animation-delay:1.5s, 2s, 2s;
animation-duration: 0.5s, 0, 0.5s;
}
@-webkit-keyframes move {
0% {transform: translateX(0);}
100% {transform: translateX(55px);}
}
@-webkit-keyframes pause {
0% {transform: translateX(55px);}
100% {transform: translateX(55px);}
}
@-webkit-keyframes move4 {
0% {transform: translateX(55px);}
100% {transform: translateX(0);}
}
@-moz-keyframes move {
0% {transform: translateX(0);}
100% {transform: translateX(55px);}
}
@-moz-keyframes pause {
0% {transform: translateX(55px);}
100% {transform: translateX(55px);}
}
@-moz-keyframes move4 {
0% {transform: translateX(55px);}
100% {transform: translateX(0);}
}
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. |