-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (66 loc) · 2.57 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'/>
<title>简简单单可以有^_^</title>
<meta name='keywords' content=''/>
<meta name='description' content=''/>
<link rel='icon' href='/yidan/images/favicon.ico' type='image/x-icon' />
<link rel='stylesheet' href='http://static.yidanxiu.com/yidan/css/fontawesome420/css/font-awesome.min.css' />
<link rel='stylesheet' href='http://static.yidanxiu.com/yidan/css/fontawesome420/css/font-awesome-ie7.min.css' />
<link rel='stylesheet' href='http://static.yidanxiu.com/yidan/css/yidan.css'/>
<script src='http://static.yidanxiu.com/yidan/js/jquery-1.7.1.min.js'></script>
<script src='http://static.yidanxiu.com/yidan/js/jquery.nicescroll.js'></script>
<script src='http://static.yidanxiu.com/yidan/js/ajaxupload.js'></script>
<script src='http://static.yidanxiu.com/yidan/js/yidan.js'></script>
<script src='http://static.yidanxiu.com/yidan/js/gooddate/WdatePicker.js'></script>
<script src='http://static.yidanxiu.com/yidan/js/edit/kindeditor.js'></script>
<script src='http://static.yidanxiu.com/yidan/js/edit/zh_CN.js'></script>
<script src='http://static.yidanxiu.com/yidan/js/base64/my_core-min.js'></script>
<script src='http://static.yidanxiu.com/yidan/js/base64/my_enc-base64-min.js'></script>
<body class='f-ff1 f-cb'>
<div class='alert'>
<div class='alert_div' id='alert_div'>
<div class='head' id='alert_head'>
<span class='title'></span>
<span class='close hover'><i class='fa fa-close'></i></span>
<span class='change hover'><i class='fa fa-expand'></i></span>
</div>
<div class='alert_content' id='alert_content'></div>
</div>
<div class='alert_msg_body'>
<span class='msg_left warning'><i class=''></i></span>
<span class='msg_content'></span>
<span class='msg_right'></span>
</div>
</div>
<div id="goTop" class="goTop" onclick="goTop();" title="返回顶部" style="display: block;">
<i class="fa fa-angle-up"></i>
</div>
<style>
html{
height: 100%;
}
body{
overflow-y: auto;
position: relative;
height: 100%;
background-image: url('/yidan/images/blueprint.png');
background-repeat: repeat;
background-position: top left;
background-attachment: scroll;
}
</style>
<script>
$(document).ready(function () {
G = {
windowHeight: $(window).height(),
windowWidth: $(window).width(),
};
init_com();
init_form();
init_alert();
});
</script>
</body>
</html>