forked from MRSallee/CrinGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph.html
39 lines (35 loc) · 1.9 KB
/
graph.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
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>CrinGraph - Frequency response graphs</title>
<link rel="canonical" href=""/>
<meta name="description" content="View and compare frequency response graphs for earphones/headphones."/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes"/>
<link rel="shortcut icon" type="image/png" href="cringraph-favicon.png"/>
<link rel="preconnect" href="https://fonts.gstatic.com"/>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap" rel="stylesheet">
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-title" content="CrinGraph"/>
<link rel="apple-touch-icon" href="cringraph-icon.png"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<style type="text/css">body { opacity: 0.0; transition: opacity 0.1s ease-in; }</style>
<base target="_parent">
</head>
<body>
<div class="graphtool">
<noscript>Turn on Javascript</noscript>
</div>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://d3js.org/d3-selection-multi.v1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fuse.js/3.4.4/fuse.min.js"></script>
<script src="config.js"></script>
<script src="equalizer.js"></script>
<script src="listAugment.js"></script>
<script src="saveSvgAsPng.js"></script>
<script src="fiioUsbHidHandler.js"></script>
<script src="usbHidConnector.js"></script>
<script src="graphtool.js"></script>
</body>
</html>