-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (82 loc) · 3.97 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
79
80
81
82
83
84
85
86
87
88
89
90
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta http-equiv="Content-Type" charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<meta http-equiv="X-UA-Compatible" content="chrome=1,IE=edge">
<meta name="renderer" content="webkit|ie-comp|ie-stand"/>
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<!-- build:css(.) styles/vendor.css -->
<!-- bower:css -->
<link rel="stylesheet" href="bower_components/toastr/toastr.css" />
<!-- endbower -->
<link rel="stylesheet" type="text/css" href="bower_components/semantic/dist/semantic.css">
<!-- endbuild -->
<link rel="stylesheet" href="styles/main.css" />
<!-- build:css(.tmp) styles/main.css -->
<!-- endbuild -->
</head>
<body ng-app="avimetApp">
<!--[if lte IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade
your browser</a> to improve your experience.</p>
<![endif]-->
<div ng-controller="RouterController as route" class="index">
<div class="ui menu" style="height: 55px;background: #008bb1">
<div class="menu-container" style="width: 2000px">
<label style="font-size: 24px;color: white;line-height: 50px;margin-left: 1px;float:left">VAISALA</label>
<div style="margin-left:10px;color: white;height: 100px;width: 170px;word-break: break-all;float:left;line-height:25px">/ AviMet 自动气象观测系统
43 54 26 N 87 28 27 E</div>
<label style="margin-left: 50px;font-size: 20px;color: white;line-height: 60px">UTC 12:30Z</label>
<input style="margin-left: 100px;padding-top:10px;width: 80px;height: 50px;background-color: #ffffff;text-align: center" value="QNH"/>
<input style="padding-top:5px;width: 350px;height: 50px;;text-align: center;color: rgb(91,150,206);font-size: 20px" value="1025.02"/>
<input style="margin-left: 1px;padding-top:10px;width: 80px;height: 50px;background-color: #ffffff;text-align: center" value="hPa"/>
<label style="color: white;margin-left: 20px">北京时间:<span my-current-time="format"></span></label>
</div>
</div>
<div class="main-content" style="overflow: hidden;margin: 0 auto;height: 830px">
<div class="left-menu" >
<div class="ui accordion " >
<div class="title-home home" style="background: rgb(232,232,232);">
<a ng-click="clickCss('home')" ng-link="home">
<i class="home icon"></i>
<label style="color:black">菜单1 </label>
</a>
</div>
<div class="title-home news" style="background: rgb(232,232,232);">
<a ng-click="clickCss('news')" ng-link="news">
<i class="file text icon"></i>
<label style="color:black">菜单2</label>
</a>
</div>
</div>
</div>
<div class="right-content right-content-position">
<div style="margin-top: 1em;margin-bottom: 1em;width: 1550px;height: 600px">
<div ng-viewport></div>
</div>
</div>
</div>
<div style="width:10000px;height:50px;background-color: #fff"></div>
<!-- build:js(.) scripts/vendor.js -->
<!-- bower:js -->
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-resource/angular-resource.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<script src="bower_components/angular-new-router/dist/router.es5.js"></script>
<script src="bower_components/semantic/dist/semantic.js"></script>
<script src="bower_components/toastr/toastr.js"></script>
<!-- endbower -->
<!-- endbuild -->
<!-- build:js({.tmp,app}) scripts/scripts.js -->
<script src="scripts/app.js"></script>
<script src="scripts/directives/nowTime/nowTime.js"></script>
<script src="views/home/home.js"></script>
<script src="views/news/news.js"></script>
<!-- endbuild -->
</body>
</html>