-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
149 lines (141 loc) · 4.36 KB
/
index.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="asapdev" />
<meta name="description" content="Chatlog Magician for LS-RP" />
<title>Chatlog Magician</title>
<meta
name="keywords"
content="LSRP, LS-RP, SA-MP, chatlog magician, chatlog, magician"
/>
<link rel="stylesheet" href="css/boostrap.css" crossorigin="anonymous" />
<link href="css/sp-style.css" rel="stylesheet" />
<link href="css/app.css" rel="stylesheet" />
<link rel="icon" href="favicon.png" />
</head>
<body>
<br />
<div class="container">
<div class="row name">
<div class="col-xs-12">
<input type="hidden" class="form-control" id="name" />
</div>
</div>
<br />
<div class="clog_settings">
<div class="row" id="bal">
<div class="col-xs-12 fill-container">
<label for="font-label">font size</label>
<input
name="font-label"
id="font-label"
type="number"
min="10"
max="64"
value="12"
/>
</div>
</div>
<div class="row" id="jobb">
<div class="col-xs-12">
<input type="text" id="color-picker" class="color-picker-input" />
</div>
</div>
</div>
<br />
<center>
<div class="textarea-container">
<textarea
class="form-control textarea-input"
rows="15"
placeholder=""
></textarea>
<div class="logo-overlay">
<img src="lsrp.png" alt="Logo" />
</div>
</div>
<br />
<div style="margin-top: 0px">
<button
id="downloadOutputTransparent"
class="btn btn-success float-right"
>
Download
</button>
<div class="float-left" style="opacity: 0.5">
<i
>Please refer to <a href="https://community.ls-rp.com/forums/topic/13619-chatlog-magician/">this topic</a> for
usage.</i
>
</div>
</div>
</center>
<br />
<div class="output" id="output"></div>
</div>
<br <div="" class="col-xs-12" />
<br />
<script src="js/download-img.js"></script>
<script src="js/download.js"></script>
<script
src="js/app.js"
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script>
$(document).ready(function () {
$("#downloadOutput").click(function () {
//generated").css("background-color", "transparent");
domtoimage
.toBlob(document.getElementById("output"))
.then(function (blob) {
window.saveAs(
blob,
new Date()
.toLocaleString()
.replaceAll(",", "_")
.replaceAll(" ", "_")
.replaceAll("/", "-")
.replace("__", "_")
.replaceAll(":", "-") +
"_" +
"chatlog.png"
);
})
.then(function (blob) {
$(".generated").css("background-color", "transparent");
});
});
$("#downloadOutputTransparent").click(function () {
$(".generated").css("background-color", "transparent");
domtoimage
.toBlob(document.getElementById("output"))
.then(function (blob) {
window.saveAs(
blob,
new Date()
.toLocaleString()
.replaceAll(",", "_")
.replaceAll(" ", "_")
.replaceAll("/", "-")
.replace("__", "_")
.replaceAll(":", "-") +
"_" +
"chatlog.png"
);
})
.then(function (blob) {
$(".generated").css("background-color", "transparent");
});
});
});
</script>
<script src="js/parse-text.js"></script>
<script src="js/chat.js"></script>
<script src="js/color-picker.js"></script>
<script src="js/chatlog-parser.js"></script>
</body>
</html>