-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtool.html
More file actions
69 lines (63 loc) · 1.98 KB
/
tool.html
File metadata and controls
69 lines (63 loc) · 1.98 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Precise Unit Converter Tool</title>
<meta charset="utf-8">
<meta name="author" content="Juande Martos">
<link rel="stylesheet" type="text/css" href="http://bumxu.com/s/base.css">
<link rel="stylesheet" type="text/css" href="s/tool.css">
<link rel="icon" href="favicon.ico" type="image/vnd.microsoft.icon">
<link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon">
<script src="http://bumxu.com/j/jquery.js" type="text/javascript"></script>
<script src="http://bumxu.com/j/jquery-backstretch.js" type="text/javascript"></script>
</head>
<body>
<div id="header">
<div id="corner">
Precise Unit Converter Tool
</div>
<ul id="menu">
<li>
<a href="./" class="i-w-bot" style="background-image: url(http://bumxu.com/g/home.png)"> </a>
</li>
</ul>
</div>
<script type="text/javascript">
$.backstretch("g/wall.jpg", {
'speed' : 800
}, function() {
$('#backstretch').clone().appendTo('#header').attr('id', 'over-bck').css({
'z-index' : '1',
'position' : 'absolute',
'height' : '100%',
'width' : '100%'
});
$('#over-bck img').css({
'z-index' : '1',
'opacity' : 0.90
});
});
$(window).resize(function() {
$('#over-bck img').css({
'left' : $('#backstretch img').css('left'),
'top' : $('#backstretch img').css('top'),
'width' : $('#backstretch img').css('width'),
'height' : $('#backstretch img').css('height')
});
});
</script>
<div id="content-abs">
<div id="titulo">
Precise Unit Converter Tool
</div>
<div id="subtitulo" class="translate" data-translate="subtitle">
All units in order! ツ
</div>
<div id="unitlist"></div>
<div id="unitedit"></div>
</div>
<script src="j/jquery-json.js" type="text/javascript"></script>
<script src="j/tool.js" type="text/javascript"></script>
</body>
</html>