forked from outdatedbrowser/outdated-browser
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnoie.js
27 lines (26 loc) · 1.36 KB
/
noie.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
(function(w, d, ua) {
if(!/Trident|MSIE/i.test(ua)) return;
setTimeout(function() {
var div = d.createElement('div'), margin = d.createElement('div');
div.innerHTML = 'MS \uc775\uc2a4\ud50c\ub85c\ub7ec\ub294 \ub354\uc774\uc0c1 \uc815\uc0c1\ub3d9\uc791\uc774 \ubcf4\uc7a5\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. <a href="https://www.microsoft.com/ko-kr/edge" target="_blank" style="color:crimson;">\uc5e3\uc9c0</a> \ub098 <a href="https://www.google.com/chrome/" target="_blank" style="color:crimson;">\ud06c\ub86c</a>, <a href="https://www.mozilla.org/firefox/windows/" target="_blank" style="color:crimson;">\ud30c\uc774\uc5b4\ud3ed\uc2a4</a> \ub4f1 \uc694\uc998 \ube0c\ub77c\uc6b0\uc800\ub97c \uc774\uc6a9\ud574\uc8fc\uc138\uc694.';
div.style.position = 'fixed';
div.style.zIndex = '9999';
div.style.bottom = '0';
div.style.left = '0';
div.style.width = '100%';
div.style.height = '80px';
div.style.paddingTop = '24px';
div.style.backgroundColor = '#ffcccc';
div.style.border = '5px solid crimson';
div.style.fontSize = '16px';
div.style.color = 'black';
div.style.fontWeight = 'bold';
div.style.textAlign = 'center';
div.style.display = 'block';
div.style.boxSizing = 'border-box';
d.body.appendChild(div);
margin.style.height = '80px';
margin.style.opacity = '0';
d.body.appendChild(margin);
}, 1000);
})(window, document, navigator.userAgent);