<html>
<!--
style="height: 200px;"
margin-top: 470px; margin-bottom: 30px;
-->
<style>
.footnote{
color: maroon;
text-decoration: none;
}
[data-title]:hover:after {
opacity: 1;
cursor: pointer;
transition: all 0.1s ease 0.5s;
visibility: visible;
}
[data-title]:after {
content: attr(data-title);
font-family: monospace;
background-color: white;
color: black;
font-size: 11px;
position: absolute;
padding: 1px 5px 2px 5px;
bottom: +1em;
left: 100%;
width: 250px;
white-space: normal;
opacity: 0;
border: 2px solid #111111;
z-index: 99999;
visibility: hidden;
cursor: pointer;
}
[data-title] {
position: relative;
cursor: pointer;
}
.ftnote {
position: relative;
display: inline-flex;
padding-bottom: 0px;
background-color: transparent;
height: 15px;
color: maroon;
transition: background-color 0.7s, color 0.5s, border-bottom 0.1s;
}
.ftnotecontent {
font-family: monospace;
background-color: white;
color: black;
font-size: 11px;
position: absolute;
padding: 1px 5px 2px 5px;
bottom: +1em;
left: 100%;
width: 250px;
white-space: pre-wrap;
opacity: 0;
border: 2px solid #111111;
z-index: 99999;
visibility: hidden;
cursor: pointer;
}
.ftnotecontent-follow {
font-family: monospace;
background-color: white;
color: black;
font-size: 11px;
position: absolute;
padding: 1px 5px 2px 5px;
width: 250px;
white-space: pre-wrap;
opacity: 0;
border: 2px solid #111111;
z-index: 99999;
visibility: hidden;
box-sizing: border-box;
cursor: pointer;
transition: 0.1s ease-out;
}
.ftnote:hover .ftnotecontent{
visibility: visible;
opacity: 1;
cursor: pointer;
}
.ftnote:hover .ftnotecontent-follow{
visibility: visible;
opacity: 1;
cursor: pointer;
}
.ftnote:hover {
cursor: pointer;
}
.ftnote-header {
display: block;
box-sizing: border-box;
position: absolute;
top: -10px;
left: -15px;
background-color: white;
font-size: 13px;
color: black;
margin: 0px;
padding: 1px;
border: outset black 3px;
}
.article {
border: solid 2px black;
background-color: gainsboro;
width: 1000px;
text-align: left;
padding-left: 15px;
border-radius: 10px;
margin-top: 30px;
margin-bottom: 30px;
}
.article-prewrap {
display: block;
margin-right: 15px;
white-space: pre-wrap;
}
.hidden {
display: none;
}
</style>
<body>
<br>
<br>
<br>
<div class="tabcontent" id=" [div name] " >
<center><pre class="article" style="margin-top: 0px;"><span class="article-prewrap">
<a class="footnote" type="button" onclick="getElementById('[footnote]').scrollIntoView({behavior: 'smooth'});" data-title=" [content] ">¹</a>
<div class="ftnote"><a class="footnote" type="button" onclick="getElementById('[footnote]').scrollIntoView({behavior: 'smooth'});">¹</a><span class="ftnotecontent"><b style="font-size: 14px;">Footnote 1.</b>
Content
<span style="font-size: 9px;">(click to scroll to footnotes)</span>
</span></div>
<div class="ftnote"><a class="footnote" type="button" onclick="getElementById('[footnote]').scrollIntoView({behavior: 'smooth'});">¹</a><span class="ftnotecontent-follow" id="footnote1"><b class="ftnote-header">Footnote 1.</b>
Content
<span style="font-size: 9px;">(click to scroll to footnotes)</span>
</span></div>
<b>Footnotes:</b>
<span id="[footnote]">¹</span>
</span></pre></center>
<br>
<br>
</div>
</body>
<script>
let myDiv = document.getElementById("footnote1");
function istouchDevice() {
try {
document.createEvent("TouchEvent");
return true;
} catch (e) {
return false;
}
}
const move = (e) => {
try {
var x = !istouchDevice() ? e.pageX : e.touches[0].pageX;
var y = !istouchDevice() ? e.pageY : e.touches[0].pageY;
} catch (e) {}
myDiv.style.left = x - 1750 + "%";
myDiv.style.top = y + 55 + "%";
};
document.addEventListener("mousemove", (e) => {
move(e);
});
document.addEventListener("touchmove", (e) => {
move(e);
});
</script>
</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. |