-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (51 loc) · 2.14 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>RKD Samples</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="js/jquery.datetimepicker.js"></script>
<script src="js/timeline.js"></script>
<script src="js/formScripts.js"></script>
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css" rel="stylesheet">
<link href="css/timeline.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="css/jquery.datetimepicker.css"/>
<link rel="stylesheet" type="text/css" href="class.css" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<script>
$(document).ready(function() {
$('#startPicker').datetimepicker({
formatTime:'H:i',
formatDate:'Y.m.d',
step:10
});
$('#endPicker').datetimepicker({
formatTime:'H:i',
formatDate:'Y.m.d',
step:10
});
});
</script>
</head>
<body>
<div class='main'>
<div id="headline_data" style="display: none;"> </div>
<div id="timelineWrapper">
<div id="timeline"></div>
</div>
<div id="form">
Start Time: <input type="text" id="startPicker">
End Time: <input type="text" id="endPicker"> <br />
Max Count: <input type="text" id="maxCount">
Language: <input type="text" id="language">
Query: <input type="text" id="query">
<input type="button" onclick="collectNews();" value="Filter Articles">
</div>
</div>
<div id="story" class='content'>
<div id="story_title"></div>
<div id="story_date"></div>
<div id="story_content"> </div>
</div>
</body>
</html>