-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (127 loc) · 5.49 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
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<link rel="stylesheet" href="index.css">
<!--<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">-->
<script src="d3.v3.min.js"></script>
<script src="jquery.js"></script>
<link rel="stylesheet" href="jquery-ui.css">
<script src="DataTables/datatables.min.js"></script>
<link rel="stylesheet" href="DataTables/datatables.css">
<link rel="stylesheet" href="node_modules/@blueprintjs/core/dist/blueprint.css">
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>-->
<!--<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script> -->
<script src="jquery-ui.min.js"></script>
<!-- Include Twitter Bootstrap and jQuery: -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" type="text/css"/>
<script type="text/javascript" src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- Include the plugin's CSS and JS: -->
<script type="text/javascript" src="node_modules/bootstrap-multiselect/dist/js/bootstrap-multiselect.js"></script>
<link rel="stylesheet" href="node_modules/bootstrap-multiselect/dist/css/bootstrap-multiselect.css" type="text/css"/>
</head>
<body>
<div class="layout">
<div class="interactive-area">
<div class="summoner-name-wrapper search-bar">
<div class="pt-input-group">
<span class="pt-icon pt-icon-search" onclick="searchSummoner()"></span>
<input class="pt-input summoner-name" type="search" placeholder="Search for a Summoner" dir="auto" />
</div>
</div>
<div class="filters">
<div class="pt-card">
<h3>Filters</h3>
<table>
<tbody>
<tr>
<td class="filter-cell filter-cell-header">Self:</td>
<td class="filter-cell"><select class="championSelect-self" multiple="multiple"></select></td>
<td class="filter-cell"><select class="roleSelect-self" multiple="multiple"></select></td>
</tr>
<tr>
<td class="filter-cell filter-cell-header">Allies:</td>
<td class="filter-cell"><select class="championSelect-ally" multiple="multiple"></select></td>
<td class="filter-cell"><select class="roleSelect-ally" multiple="multiple"></select></td>
</tr>
<tr>
<td class="filter-cell filter-cell-header">Enemies:</td>
<td class="filter-cell"><select class="championSelect-enemy" multiple="multiple"></select></td>
<td class="filter-cell"><select class="roleSelect-enemy" multiple="multiple"></select></td>
</tr>
<tr>
<td class="filter-cell filter-cell-header">Starting side:</td>
<td class="filter-cell">
<input type="radio" name="sideSelect" id="blueSide" value="blueSide" onclick="blueSideSelected()" />Blue
<input type="radio" name="sideSelect" id="redSide" value="redSide" onclick="redSideSelected()" />Red
<input type="radio" name="sideSelect" id="bothSides" value="bothSides" onclick="bothSidesSelected()" checked />Both
</td>
<td></td>
</tr>
<tr>
<td class="filter-cell filter-cell-header">Match outcome:</td>
<td class="filter-cell">
<input type="radio" name="outcomeSelect" id="winOutcome" value="winOutcome" onclick="winOutcomeSelected()" />Win
<input type="radio" name="outcomeSelect" id="lossOutcome" value="lossOutcome" onclick="lossOutcomeSelected()" />Loss
<input type="radio" name="outcomeSelect" id="bothOutcomes" value="bothOutcomes" onclick="bothOutcomesSelected()" checked />Both
</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<br/>
<div class="flexContainer">
<div class="flexAreaFilterContainer">
<label class="pt-control pt-switch areaFilter-switch">
<input type="checkbox" class="areaFilter-checkbox" />
<span class="pt-control-indicator"></span>
Area Filter
</label>
</div>
<div class="rightAlign flexTwoContainer"> kill = </div> <div class="killLegend flexOneContainer"> </div>
<div class="rightAlign flexTwoContainer"> death = </div> <div class="deathLegend flexOneContainer"> </div>
<div class="rightAlign flexTwoContainer"> assist = </div> <div class="assistLegend flexOneContainer"> </div>
</div>
</div>
<div class="vis-area">
<div class="summmoner-name-display"></div>
<div id="map"></div>
</div>
<div class="timeSliderWrapper">
<div class="timeSlider"> </div>
</div>
<div class="timeSliderText"> minutes </div>
</div>
<div class="analysis-area">
<table class="analysis-layout">
<tbody>
<tr>
<td class="analysis-cell">
<table id="enemyRoleKilled" class="display" width="100%"></table>
</td>
<td class="analysis-cell">
<table id="enemyChampKilled" class="display" width="100%"></table>
</td>
</tr>
<tr>
<td class="analysis-cell">
<table id="participatingAllyRoles" class="display" width="100%"></table>
</td>
<td class="analysis-cell">
<table id="participatingAllyChamps" class="display" width="100%"></table>
</td>
</tr>
<tr>
<td class="analysis-cell">
<table id="participatingEnemyRoles" class="display" width="100%"></table>
</td>
<td class="analysis-cell">
<table id="participatingEnemyChamps" class="display" width="100%"></table>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
<script src="index.js"></script>