add anchor highlighting to the reference

This commit is contained in:
Vladimir Agafonkin 2013-06-27 18:15:50 -04:00
parent 9a113d11ac
commit c7668676f1
2 changed files with 26 additions and 5 deletions

View File

@ -548,3 +548,24 @@ p.notice {
#disqus_thread {
margin-top: 3em;
}
tr:target {
background: yellow;
-webkit-animation: highlight 2s ease 0.5s 1 normal forwards;
-moz-animation: highlight 2s ease 0.5s 1 normal forwards;
-o-animation: highlight 2s ease 0.5s 1 normal forwards;
animation: highlight 2s ease 0.5s 1 normal forwards;
}
@-webkit-keyframes highlight {
0% { background: yellow; }
100% { background: white; }
}
@-moz-keyframes highlight {
0% { background: yellow; }
100% { background: white; }
}
@keyframes highlight {
0% { background: yellow; }
100% { background: white; }
}

View File

@ -6296,13 +6296,13 @@ var Leaflet = L.noConflict();
<pre><code>L.version // returns "0.5" (or whatever version is currently in use)</code></pre>
<script>
var tables = document.getElementsByTagName('table'), tl = tables.length;
for (var i = 0; i < tl; i++) {
var tables = document.getElementsByTagName('table');
for (var i = 0, len = tables.length; i < len; i++) {
var id = tables[i].getAttribute('data-id'),
tds = tables[i].getElementsByTagName('td'), tdl = tds.length;
for (var j = 0; j < tdl; j++) {
tds = tables[i].getElementsByTagName('td');
for (var j = 0, tdLen = tds.length; j < tdLen; j++) {
if (tds[j].cellIndex === 0) {
tds[j].id = id + '-' + tds[j].innerText.split('(')[0].toLowerCase();
tds[j].parentNode.id = id + '-' + tds[j].innerText.split('(')[0].toLowerCase();
}
}
}