-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscreen-icloud-topic.html
57 lines (55 loc) · 2.18 KB
/
screen-icloud-topic.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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<title>实时舆情热点</title>
<!--引入CSS-->
<link rel="stylesheet" type="text/css" href="css/public.css"/>
<link rel="stylesheet" type="text/css" href="css/screen-style.css">
<!--引入Script-->
<script type="text/javascript" src="lib/jquery-1.11.1.min.js"></script>
<!-- 引入Echarts -->
<script type="text/javascript" src="lib/echarts-all.js"></script>
</head>
<body>
<div class="container">
<div class="hot-item">
<!-- 头部 -->
<div class="cd-rd-header current-hot-header">
<h1>实时舆情热点</h1>
</div>
<div class="current-hot-container">
<!-- 左侧微博成都 -->
<div class="current-hot-left">
<div class="clearfix">
<div class="current-hot-left-tit">
<span class="prev"></span>
<p>微博涉成都</p>
<span class="next"></span>
</div>
</div>
<div class="current-hot-left-con-wrap" id="cur-hot-left-con-wrap"></div>
</div>
<!-- 右侧 热点词云 -->
<div class="current-hot-right">
<div class="current-hot-right-wrap">
<p>新闻热点词云</p>
<div id="newsWordCloud"></div>
</div>
<div class="current-hot-right-wrap">
<p>纸媒热点词云</p>
<div id="paperWordCloud"></div>
</div>
<div class="current-hot-right-wrap">
<p>微信热点词云</p>
<div id="wechatWordCloud"></div>
</div>
</div>
</div>
</div>
</div>
<!-- 引入云词JS -->
<script type="text/javascript" src="js/screen/startup-current.js"></script>
<script type="text/javascript" src="js/core/current-icloud.js"></script>
</body>
</html>