-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 1.55 KB
/
Copy pathindex.html
File metadata and controls
48 lines (48 loc) · 1.55 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>品牌馆</title>
<link rel="stylesheet" href="css/index.css">
<script>
(function(win,doc){
var resize='orientationchange' in window?'orientationchange':'resize';
function change(){
var html=doc.documentElement;
var W=doc.documentElement.clientWidth;
html.style.fontSize=W/15 +'px';
}
win.addEventListener(resize,change,false);
win.addEventListener('load',change,false);
doc.addEventListener('DOMContentLoaded',change,false);
})(window,document);
</script>
<script src="js/md5.js" async></script>
</head>
<body>
<div ui-view class="content">
<div class="atmosphere">
<img src="./res/banner.jpg">
</div>
</div>
<div class="loadWrap showLoad" id="loadWrap">
<div id="casePourpre">
<div id="load">
<p>loading</p>
</div>
<div id="vague">
<div class="vague1"></div>
<div class="vague2"></div>
<div class="vague3"></div>
<div class="vague4"></div>
<div class="vague5"></div>
<div class="vague6"></div>
</div>
</div>
</div>
<div class="alert-pop" ng-bind="alert_text" ng-if="alertShow" ng-class="{'alert-show':alertShow}"></div>
<script src="js/lib/requirejs/require.js" data-main="js/main" async="async" ></script>
</body>
</html>