-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterfaceModule.js
90 lines (78 loc) · 3.62 KB
/
InterfaceModule.js
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
define ("Subtitles", function(){
function Interface(){
}
var myStorage = {};
Interface.prototype.show = function show(par, text, ms){
this._subs = document.createElement("div");
this._substrate = document.createElement("div");
this._div = document.createElement("div");
this._substrate.setAttribute("style",
"width: 50%; height: 25px; position: absolute; left: 25%; bottom: 20px; background-color: black; opacity: 0.4; border-radius: 3px;" +
"z-index:50; display: block;");
this._div.setAttribute("style",
"width: 50%; height: 25px; color: white; text-shadow: 0px 0px 3px black ; align-content: center; text-align: center;"
+ "position: absolute; bottom: 20px; left: 25%; font-size: 40px; z-index:50; display: block; word-wrap: break-word;");
this._subs.appendChild(this._substrate);
this._subs.appendChild(this._div);
this._div.innerHTML = text;
this._par = par;
var a = null;
for (var id in myStorage)
{
if (a = this._par.querySelector("#" + id))
{
if (a.parentNode == this._par){
this._id = id;
clearTimeout(myStorage[id]);
this._par.removeChild(document.getElementById(id));
} else {
this._id = "subs" + Math.round(Math.random()*1000);
while(myStorage[this._id]){
this._id = "subs" + Math.round(Math.random()*1000);
}
myStorage[this._id] = true;
}
} else {
this._id = "subs" + Math.round(Math.random()*1000);
while(myStorage[this._id]){
this._id = "subs" + Math.round(Math.random()*1000);
}
myStorage[this._id] = true;
}
}
if (!this._id)
this._id = "subs" + Math.round(Math.random()*1000);
this._subs.setAttribute("id",this._id);
var test = document.createElement("div");
var test2 = document.createElement("div");
test.setAttribute("id","test");
test2.setAttribute("id","test2");
var maxWidth = this._par.offsetWidth*0.8;
test.setAttribute("style",
"position: absolute; height: auto; max-width: " + maxWidth + "px; font-size: 40px; visibility: hidden;");
test2.setAttribute("style",
"height: auto; width: auto; font-size: 40px; word-wrap: break-word; visibility: hidden;"); //visibility: hidden;
test2.innerHTML = text;
test.appendChild(test2);
document.body.insertBefore(test,document.body.childNodes[0]);
var width = document.getElementById("test2").clientWidth;
var height = document.getElementById("test2").clientHeight;
document.body.removeChild(document.getElementById("test"));
this._substrate.style.left = this._div.style.left = this._par.offsetLeft + (this._par.clientWidth - width) / 2 + "px";
this._substrate.style.height = this._div.style.height = height + 10 + "px";
this._substrate.style.top = this._par.offsetTop + this._par.offsetHeight * 0.98 - (height + 10) + "px";
this._div.style.top = this._par.offsetTop + this._par.offsetHeight * 0.98 - (height + 5) + "px";
this._substrate.style.width = this._div.style.width = width + 15 + "px";
this._par.insertBefore(this._subs, this._par.children[0]);
myStorage[this._id] = this._timerId = setTimeout(function (){
var self = {};
self._id = this._id;
self._par = this._par;
return function(){
myStorage[self._id] = null;
self._par.removeChild(document.getElementById(self._id));
};
}.apply(this), ms);
}
return new Interface;
});