blob: 3105c577beac345c25a432c4a5e0646125b4f78e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<script>
document.addEventListener("DOMContentLoaded", () => {
const svg = document.createElementNS("http://www.w3.org/2000/svg", "svg")
const text = document.createElementNS("http://www.w3.org/2000/svg", "text")
text.setAttribute("letter-spacing", "-37vw")
const node = document.createTextNode("\n\n\r7%٠\0ó …§ð†ªã€€&**=🯚ð¯‚ï¸¡ó ”©Û¹â€Ùªv*/ð¯„𖹧åžçº¶*;{0ð–£”9̆뢻\r\n^掶𩹺*|\r\n🩂٫ð‡½ë«»e犮㇆á²ð¡‡‚\u2028ᨲâ¤\rv+🧌8שּׁ\nð¯Žè›¥ó „ˆêº¡\nâ’ð±’٠۹𖯸0ó ¤™/ᾂ𫞾99 a&=ð‰‚۹𯩒゙2ó ¥µ^0ê’‹ð—»ð…»\0X%+0*/镳 ٪ȺXá©¿L2⼤𛪈Âðª¸ð›‰")
text.appendChild(node)
svg.appendChild(text)
document.documentElement.appendChild(svg)
const rect = document.documentElement.getBoundingClientRect()
node.convertRectFromNode(rect, svg, {})
})
</script>
|