Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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

Dismiss x
public
Bin info
anonymouspro
0viewers