-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest.html
83 lines (73 loc) · 2.49 KB
/
test.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<title>GW2Achievements: tests</title>
<meta charset="UTF-8"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="color-scheme" content="dark">
<meta name="theme-color" content="1a1a1a"/>
<link rel="icon" type="image/png" sizes="64x64" href="/img/icon/2261498.png"/>
<meta name="author" content="Pandraghon"/>
<meta name="description" content="Generate your own Guild Wars 2 achievement and export it to any image format."/>
<style>
img {
width: 318px;
height: 90px;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
text-align: justify;
min-width: 318px;
}
style {
display: block;
}
</style>
</head>
<body>
<h1>Playground</h1>
<p>You can edit the codes to do your own tests.</p>
<h2>Default</h2>
<pre><style contenteditable="true">#test1 {
background-image: url('https://assets.gw2achievements.com/Lorem%20ipsum.png');
}</style></pre>
<img id="test1"/>
<h2>Completed</h2>
<pre><style contenteditable="true">#test2 {
background-image: url('https://assets.gw2achievements.com/Lorem%20ipsum.png?state=completed');
}</style></pre>
<img id="test2"/>
<h2>Progression</h2>
<pre><style contenteditable="true">#test3 {
background-image: url('https://assets.gw2achievements.com/Lorem%20ipsum.png?progress=2&goal=10');
}</style></pre>
<img id="test3"/>
<h2>Theme</h2>
<pre><style contenteditable="true">#test4 {
background-image: url('https://assets.gw2achievements.com/Lorem%20ipsum.png?p=2&g=10&theme=pvp');
}</style></pre>
<img id="test4"/>
<h2>Icon</h2>
<pre><style contenteditable="true">#test5 {
background-image: url('https://assets.gw2achievements.com/Lorem%20ipsum.png?s=completed&t=community&icon=602784');
}</style></pre>
<img id="test5"/>
<h2>AP</h2>
<pre><style contenteditable="true">#test6 {
background-image: url('https://assets.gw2achievements.com/Lorem%20ipsum.png?p=2&g=10&ap=5');
}</style></pre>
<img id="test6"/>
<h2>Title</h2>
<pre><style contenteditable="true">#test7 {
background-image: url('https://assets.gw2achievements.com/Lorem%20ipsum.png?p=2&g=10&rewards=title');
}</style></pre>
<img id="test7"/>
<h2>Language</h2>
<pre><style contenteditable="true">#test8 {
background-image: url('https://assets.gw2achievements.com/Lorem%20ipsum.png?s=completed&l=fr');
}</style></pre>
<img id="test8"/>
</body>
</html>