-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.htm
38 lines (25 loc) · 1 KB
/
demo.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<html>
<head>
<title>x3x3-demo</title>
<meta charset="utf-8"/>
<style type="text/css">
<!--
a svg{width:100%;height:auto;}
-->
</style>
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/mntn-dev/x3x3/x3x3.min.js"></script> <!-- 0.3.1 -->
<script type="text/javascript">
window.onload=function(){
document.body.innerHTML=
'<pre style="font-size:2vw;line-height:2vw;">'+
'<span title="x3x3.js">'+x3x3.txt('x3x3.js','=')+'</span>'+
'<span title=".:*/\'()[]=+-"|$€<>°">'+x3x3.txt('.:*/\'()[]=+-"|$€<>°','@')+'</span>'+
'<span title="Hello world.">'+x3x3.txt('Hello world.')+'</span>'+
'</pre><hr style="border:1px solid cyan;"/><br/><br/>'+
'<span title="svg output">'+x3x3.svg('svg output')+"</span><br/><br/>"+
'<a title="https://github.com/mntn-dev/x3x3" style="text-decoration:none;outline:0;" href="https://github.com/mntn-dev/x3x3" target="_blank">'+x3x3.svg('https://github.com/mntn-dev/x3x3',5,'hotpink')+'</a>';
}
</script>
</head>
<body></body>
</html>