-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
285 lines (255 loc) · 10.6 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<!DOCTYPE html>
<!--
This is a starter template page. Use this page to start your new project from
scratch. This page gets rid of all links and provides the needed markup only.
-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>新闻地图|新闻传播学院</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.5 -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="dist/css/AdminLTE.min.css">
<!-- AdminLTE Skins. We have chosen the skin-blue for this starter
page. However, you can choose any other skin. Make sure you
apply the skin class to the body tag so the changes take effect.
-->
<link rel="stylesheet" href="dist/css/skins/skin-blue.min.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="admin/year.js"></script>
</head>
<!--
BODY TAG OPTIONS:
=================
Apply one or more of the following classes to get the
desired effect
|---------------------------------------------------------|
| SKINS | skin-blue |
| | skin-black |
| | skin-purple |
| | skin-yellow |
| | skin-red |
| | skin-green |
|---------------------------------------------------------|
|LAYOUT OPTIONS | fixed |
| | layout-boxed |
| | layout-top-nav |
| | sidebar-collapse |
| | sidebar-mini |
|---------------------------------------------------------|
-->
<body class="hold-transition skin-blue sidebar-mini">
<div class="wrapper">
<!-- Main Header -->
<header class="main-header">
<!-- Logo -->
<a href="index.html" class="logo">
<!-- mini logo for sidebar mini 50x50 pixels -->
<span class="logo-mini"> <b>A</b>
LT
</span>
<!-- logo for regular state and mobile devices -->
<span class="logo-lg"> <b>News</b>
MAP
</span>
</a>
<!-- Header Navbar -->
<nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button-->
<a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
<span class="sr-only">Toggle navigation</span>
</a>
<!-- Navbar Right Menu -->
<div class="navbar-custom-menu">
<ul class="nav navbar-nav">
<!-- /.messages-menu -->
<!-- Control Sidebar Toggle Button -->
<li>
<a href="#" data-toggle="control-sidebar"> <i class="fa fa-gears"></i>
</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- Left side column. contains the logo and sidebar -->
<aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar">
<!-- search form (Optional) -->
<form action="#" method="get" class="sidebar-form">
<div class="input-group">
<input type="text" name="q" class="form-control" placeholder="Search...">
<span class="input-group-btn">
<button type="submit" name="search" id="search-btn" class="btn btn-flat"> <i class="fa fa-search"></i>
</button>
</span>
</div>
</form>
<!-- /.search form -->
<!-- Sidebar Menu -->
<ul class="sidebar-menu">
<li class="header">HEADER</li>
<!-- Optionally, you can add icons to the links -->
<li class="active">
<a href="#">
<i class="fa fa-link"></i>
<span>首页</span>
</a>
</li>
<li>
<a href="link1.html">
<i class="fa fa-link"></i>
<span>数量分析</span>
</a>
</li>
<li>
<a href="link2.html">
<i class="fa fa-link"></i>
<span>事件分析</span>
</a>
</li>
<li>
<a href="link3.html">
<i class="fa fa-link"></i>
<span>影响力分析</span>
</a>
</li>
<li>
<a href="link4.html">
<i class="fa fa-link"></i>
<span>全球分析</span>
</a>
</li>
</ul>
<!-- /.sidebar-menu --> </section>
<!-- /.sidebar --> </aside>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
新闻地图
<small>南京大学新闻传播学院</small>
</h1>
<ol class="breadcrumb">
<li>
<a href="#">
<i class="fa fa-dashboard"></i>
Level
</a>
</li>
<li class="active">Here</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-8">
<div class="nav-tabs-custom">
<ul class="nav nav-tabs">
<li class="active">
<a href="#tab_1" data-toggle="tab">中国年度新闻地图</a>
</li>
<li>
<a href="#tab_2" data-toggle="tab"></a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane" id="tab_2">
<div id="chinamap" style="min-width: 310px; max-width: 1600px; height: 400px; margin: 0 auto"></div>
</div>
<!-- /.tab-pane -->
<div class="tab-pane active" id="tab_1">
<DIV align=center>
<IFRAME src="newsmap.html" frameBorder=0 marginwidth=0 marginheight=0 scrolling=no style="width:800px;height:500px;" width=1600 height=400 scrolling="yes" ALLOWTRANSPARENCY="true"></IFRAME>
</DIV>
</div>
<!-- /.tab-pane -->
<!-- /.tab-pane --> </div>
<!-- /.tab-content --> </div>
</div>
<div class="col-md-4">
<section class="invoice">
<!-- title row -->
<div class="row">
<div class="col-xs-12">
<h2 class="page-header">
<i class="fa fa-globe"></i>
计算传播网, Inc.
<small class="pull-right">Date: 11/01/2016</small>
</h2>
</div>
<!-- /.col --> </div>
<!-- info row -->
<div class="row invoice-info"></div>
<!-- /.row -->
<!-- Table row -->
<b>简介</b>
<br>
新闻地图是一个以可视化的方式反映世界新闻在时间与空间分布的差异性的网页应用,利用gdelt已有历史数据作为数据源,通过多样化的统计图表对新闻进行多维度展示。统计信息展示所利用的主要技术有echarts,cartogram.js (一个应用 算法构建连续性区域统计地图的javascript库 ©1985)、 d3.js 和 colorbrewer 。该版本新闻地图由刘磊和朱静怡在初始版本上拓展完成,初始版本由王成军和陈志聪搭建,©南京大学新闻传播学院, 计算传播学实验中心.
<br>
<b>About Us</b>
<br>
News Map is built upon cartogram.js (a JavaScript implementation of an algoritm to construct continuous area cartograms ©1985), d3.js and colorbrewer . This visualization combines TopoJSON -encoded boundaries of the Chinese provinces with GDP data from National Bureau Statistics of the People's Republic of China to size each province proportionally. Designed and built by Chengjun Wang and Zhicong Chen at Computational Communication Collaboratory , School of Journalism and Communication, Nanjing University.
<!-- /.row --> </section>
</div>
</div>
<!--
<div class="row">
<div class="col-md-12">
<div class="box box-primary box-solid">
<div class="box-header with-border">
<h3 class="box-title">80年代至今全球新闻变化趋势</h3>
</div>
<!-- /.box-tools -->
<!-- /.box-header -->
<!--
<div class="box-body">
<div id="mixchart" style="min-width: 310px; max-width: 1600px; height: 400px; margin: 0 auto"></div>
</div>
<!-- /.box-body -->
<!--</div>
<!-- /.box -->
<!--</div> </div>
-->
</section>
<!-- /.content -->
<!-- Your Page Content Here -->
<!-- /.content --> </div>
<!-- /.content-wrapper -->
<!-- Control Sidebar -->
<!-- /.control-sidebar -->
<!-- Add the sidebar's background. This div must be placed
immediately after the control sidebar -->
<div class="control-sidebar-bg"></div>
</div>
<!-- ./wrapper -->
<!-- REQUIRED JS SCRIPTS -->
<script src="plugins/jQuery/jQuery-2.1.4.min.js"></script>
<script src="js/echarts.min.js"></script>
<!-- jQuery 2.1.4 -->
<script src="plugins/jQuery/jQuery-2.1.4.min.js"></script>
<!-- Bootstrap 3.3.5 -->
<script src="bootstrap/js/bootstrap.min.js"></script>
<!-- AdminLTE App -->
<script src="dist/js/app.min.js"></script>
<!-- Optionally, you can add Slimscroll and FastClick plugins.
Both of these plugins are recommended to enhance the
user experience. Slimscroll is required when using the
fixed layout. -->
</body>
</html>