<script src="https://code.jquery.com/jquery-3.1.0.js"></script><meta name="description" content="[add your bin description]">
<div class="divPrincipal">
<div class="divPaiCor">
<h1 class="h1_1">menu1 </h1>
<h1 class="h1_1">menu2 </h1>
<h1 class="h1_1">menu3 </h1>
<h1 class="h1_1">menu4 </h1>
<h1 class="h1_1">menu5 </h1>
</div>
<div class="divPaiSeta">
<b id="id1" class="b_1">⇧ </b>
<b id="id2" class="b_1">⇩ </b>
</div>
</div>
*{ margin: 0; padding: 0; }
.divPrincipal{ width: 200px; display: flex; flex-wrap: wrap; align-items: center; border: 2px solid blue;}
.divPaiCor{ flex:1; margin-right: 10px; }
.h1_1{ padding: 4px 4px; margin-bottom: 2px; background-color:#c1c1c1; cursor: default; }
.divPaiSeta{ flex:0.5; font-size: 30px; text-align: center;}
.b_1{ padding: 0px 4px; margin: 8px 10px; background-color:#cfcfcf; display: block; border: 1px solid green; cursor: default; }
.divPaiSeta b:hover {
background: #000;
color: #fff;
cursor: pointer;
}
.divPaiSeta b:active {
background: gray;
color: #000;
user-select: none;
}
.divPaiCor h1:hover{
background: #000;
color: #fff;
cursor: pointer;
}
.selectedItem {
background: #000;
color: #fff;
}
let indexSelected;
let elementSelected;
let divPaiCor = document.querySelector(".divPaiCor");
let arrowUp = document.querySelector("#id1");
let arrowDown = document.querySelector("#id2");
function setaPraCima(){
let x = document.querySelectorAll(".h1_1");
indexSelected = returnPositionIndex(indexSelected - 1);
divPaiCor.insertBefore(elementSelected, x[indexSelected]);
}
function setaPraBaixo(){
let y = document.querySelectorAll(".h1_1");
indexSelected = returnPositionIndex(indexSelected + 1);
divPaiCor.insertBefore(elementSelected, y[indexSelected].nextSibling);
}
function returnPositionIndex(index) {
let min = 0, max = 4;
if(index <= min){ return min; }
if(index >= max){ return max; }
if(index > min || index < max){ return index; }
}
function selectItem(refItem) {
let allElements = [refItem.target.parentNode.children];
let index = allElements.indexOf(refItem.target);
allElements.map(item => item.classList.remove("selectedItem"));
refItem.target.classList.add("selectedItem");
indexSelected = index;
elementSelected = refItem.target;
}
divPaiCor.addEventListener("click", selectItem);
arrowUp.addEventListener("click", setaPraCima);
arrowDown.addEventListener("click", setaPraBaixo);
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. |