-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.html
46 lines (38 loc) · 1.09 KB
/
ui.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>UI</title>
<link rel="stylesheet" href="assets/style/motion.css" />
<script src="node_modules/jquery/dist/node-jquery.js"></script>
<script></script>
<script>
jQuery(function() {
var h = 768 / 2
, w = 1024 / 2
, e = $('div#mWindow1');
e.css({
width: w + 'px'
, height: h + 'px'
, top: (h / 2) + 'px'
, left: (w / 2) + 'px'
});
});
</script>
</head>
<body>
<div id="mWindow1" class="motionWindow">
<header>
<h1>I am a window</h1>
</header>
<div>
<p>foesubfos fuse ogues ofgunes ogesiug npieughpizs ehgupsiez guh giesug soegu seo</p>
<p>gsiugeohzg spegu egpsiegj ghe sp fpei fjsepgihes pfiespseijgorunv spgeufo eosug</p>
<p>so gpih jesoeihfgeiofj goesl gjeipsieg gje ispg elsijg eag eoesgj gheouslgh alg</p>
<p>foesubfos fuse ogues ofgunes ogesiug npieughpizs ehgupsiez guh giesug soegu seo</p>
<p>gsiugeohzg spegu egpsiegj ghe sp fpei fjsepgihes pfiespseijgorunv spgeufo eosug</p>
<p>so gpih jesoeihfgeiofj goesl gjeipsieg gje ispg elsijg eag eoesgj gheouslgh alg</p>
</div>
</div>
</body>
</html>