-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_common.html
28 lines (27 loc) · 1.12 KB
/
index_common.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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>好色之图(iSvg Gallery)</title>
<link rel="shortcut icon" href="<?php echo(ABSDOMAIN); ?>favicon.ico" />
<link rel="stylesheet" type="text/css" href="common/css/base.css" />
<link rel="stylesheet" type="text/css" href="common/css/default.css" />
<script type="text/javascript" src="common/js/iSvgGallery.base.js"></script>
<script type="text/javascript" src="common/js/iSvgGallery.data.js"></script>
<script type="text/javascript" src="common/js/iSvgGallery.app.js"></script>
<script type="text/javascript" src="./common/js/jquery-1.6.2.min.js"></script>
<script type="text/javascript">
// 文档加载完毕后,执行程序
if(window.attachEvent) { // IE
window.attachEvent("onload", iSvgGallery.app);
} else if(window.addEventListener) { // not IE
window.addEventListener("load", iSvgGallery.app, false);
}
</script>
</head>
<body id="body">
<svg id="canvas">
<rect id="background-rect" x="0%" y="0%"></rect>
</svg>
</body>
</html>