-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (100 loc) · 4.9 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
<!doctype html>
<html lang="en">
<head>
<title>Robotics portfolio</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.3.0/dist/chart.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/hammerjs@2.0.8"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-zoom@2.0.1/dist/chartjs-plugin-zoom.min.js"></script>
<link rel="icon" href="assets/logo/pro.png" />
<link rel="stylesheet" href="assets/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DJPLPJ28PH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-DJPLPJ28PH');
</script>
</head>
<body>
<header>
<a class="logo" href="" rel="home" title="Robotics Portfolio" target="_self">
<img src="assets/logo/pro.png" alt="ABB Logo" style="width: 50px; height: 50px; display: inline-block;">
</a>
<button id="hamburger" onclick="toggleMenu()">☰</button>
<div id="navigation-bar">
<button class="tablinks" onclick="openTypeTab(event, 'Articulated')" id="defaultOpen">Articulated</button>
<button class="tablinks" onclick="openTypeTab(event, 'Collaborative')">Collaborative</button>
<button class="tablinks" onclick="openTypeTab(event, 'Palletizer')">Palletizer</button>
<button class="tablinks" onclick="openTypeTab(event, 'SCARA')">SCARA</button>
<button class="tablinks" onclick="openTypeTab(event, 'Picker')">Picker</button>
<button class="tablinks" onclick="openTypeTab(event, 'Paint')">Paint</button>
</div>
</header>
<div id="app-content">
<div id="chartAndToolsPanel">
<div id="Articulated" class="chart-container">
<canvas id="myChartArticulated"></canvas>
</div>
<div id="SCARA" class="chart-container">
<canvas id="myChartSCARA"></canvas>
</div>
<div id="Collaborative" class="chart-container">
<canvas id="myChartCollaborative"></canvas>
</div>
<div id="Palletizer" class="chart-container">
<canvas id="myChartPalletizer"></canvas>
</div>
<div id="Picker" class="chart-container">
<canvas id="myChartPicker"></canvas>
</div>
<div id="Paint" class="chart-container">
<canvas id="myChartPaint"></canvas>
</div>
<div id="Chart_Tools">
<div id="Controllers_CheckBox">
<input id="IRC5_checkbox" type="checkbox" checked="" value="IRC5" name="IRC5"
onclick="filterByController(this)">
<label for="IRC5_checkbox"> IRC5</label>
<input id="Omnicore_checkbox" type="checkbox" checked="" value="Omnicore" name="Omnicore"
onclick="filterByController(this)">
<label for="Omnicore_checkbox"> OmniCore</label>
</div>
<button id="Reset" onclick="resetZoom()">Reset View</button>
<div id="disclaimer">
This website is not affiliated with any company or organization. Information provided is for general
informational purposes only
</div>
</div>
</div>
<div id="infoPanel">
<div style="text-align: center;">
<img id="image" src="assets/img/IRB8700_thumb.png" max-height="256px" alt="Industrial Robot">
</div>
<div id="RobotTitle">
<div id="color"></div>
<h2 id="IRBName"></h2>
</div>
<p id="descr">Put your mouse hover the circles in the chart to interact with them!</p>
<div id="supported_controllers"></div>
<button id="MoreContainer" class="More"><a href="https://new.abb.com/products/robotics" id="More"
target="_blank">ABB Robotics Website</a></button>
</div>
<div id="secret-tools">
<div class="select-all-checkbox">
<input type="checkbox" id="selectAll" name="selectAll" checked>
<label for="selectAll">Select All</label>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="assets/inlineJson.js"></script>
<script type="text/javascript" src="assets/colorsUtils.js"></script>
<script type="text/javascript" src="assets/chartUtils.js"></script>
<script type="text/javascript" src="assets/dataUtils.js"></script>
<script type="text/javascript" src="assets/uiUtils.js"></script>
<script type="text/javascript" src="assets/main.js"></script>
</body>
</html>