783041-2.html (2018B)
1 <html> 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public 3 - License, v. 2.0. If a copy of the MPL was not distributed with this 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 5 <head> 6 <style> 7 #el0 { 8 height: 200px ! important; 9 height: 1em; 10 width: 1em; 11 padding: 5px; 12 display: table; 13 transform:translate3d(0, 80px, 0); 14 } 15 #el0:before { 16 display: -moz-box; 17 content: counter(c, hiragana) attr(id); 18 counter-increment: c 694; 19 } 20 #el0:after { 21 counter-reset: c 694; 22 content: counter(c, cjk-ideographic) attr(id); 23 } 24 #el1 { 25 text-shadow: 0px 20px 0px, 0px -20px 10px; 26 line-height: 4px; 27 transform: translate3d(0px, -300px, 0px); 28 display: table-row-group; 29 border-spacing: 7px; 30 } 31 #el1:after { 32 counter-reset: c; 33 display: -moz-box; 34 content: counter(c, cjk-ideographic) attr(id); 35 counter-increment: c 694; 36 } 37 #el2 { 38 display: table-row-group; 39 transform:translate3d(0, 80px, 0); 40 } 41 #el2:after { 42 content: counter(c, cjk-ideographic) attr(id); 43 } 44 </style> 45 <script> 46 function MaybeReload() { 47 var countdown = 10; 48 if (location.search) { 49 countdown = parseInt(location.search.slice(1)) - 1; 50 } 51 if (countdown > 0) { 52 location.search = countdown; 53 } 54 } 55 56 onload = function() { 57 el0=document.createElement('div') 58 el0.setAttribute('id','el0') 59 document.body.appendChild(el0) 60 el1=document.createElement('div') 61 el1.setAttribute('id','el1') 62 el0.appendChild(el1) 63 el2=document.createElement('q') 64 el2.setAttribute('id','el2') 65 el1.appendChild(el2) 66 el0.appendChild(document.createTextNode('A')) 67 setTimeout("MaybeReload()", 100) 68 } 69 </script> 70 </head> 71 <body> 72 </body> 73 </html>