forked from RadiationX/PageBlur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo1.html
34 lines (28 loc) · 1.16 KB
/
demo1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PageBlur.js</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="css/style.css">
<script src="js/PageBlur.js"></script>
</head>
<body>
<pre><code data-language="html" class="rainbow"><span class="source js embedded"><span class="support tag script"><</span><span class="entity tag script">script</span><span class="support tag script">></span>
<span class="entity function">window.onload</span> <span class="keyword operator">=</span> <span class="keyword">function</span>(){<span class="function call">PageBlur</span>()};
<span class="support tag script"></</span><span class="entity tag script">script</span><span class="support tag script">></span></span></code></pre>
<div id="screen">
<div class="wrap">
<div class="content">
<div class="text">Work!</div>
</div>
</div>
</div>
<div class="wrapBlur"></div>
<script>
window.onload = function () {
PageBlur()
};
</script>
</body>
</html>