-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (112 loc) · 3.98 KB
/
index.html
File metadata and controls
119 lines (112 loc) · 3.98 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Primary Meta Tags -->
<title>EEcircuit</title>
<meta name="title" content="EEcircuit" />
<meta
name="description"
content="EEcircuit is a circuit simulator based on ngspice and it runs inside the browser using WebAssembly technology. The input is spice based netlist, and the output is results of the analysis that you're doing in the simulations. You are able to plot and view the results directly in the browser using high-performance WebGL plotting library webgl-plot, or download the data in CSV format for further analysis. Notice that your netlist and results are processed locally and always remain inside your browser and are never uploaded to network. The focus of this implementation is rapid analysis, sharing circuits ideas and results in VLSI and chip-design communities."
/>
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://EEcircuit.com" />
<meta property="og:type" content="website" />
<meta property="og:title" content="EEcircuit" />
<meta
property="og:description"
content="A browser based SPICE circuit simulator using WebAssembly technology"
/>
<meta
property="og:image"
content="https://eecircuit.com/EEcircuit_og.png"
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="EEcircuit" />
<meta property="twitter:url" content="https://EEcircuit.com" />
<meta name="twitter:title" content="EEcircuit" />
<meta
name="twitter:description"
content="A browser based SPICE circuit simulator using WebAssembly technology"
/>
<meta
name="twitter:image"
content="https://eecircuit.com/EEcircuit_og.png"
/>
<!-- Meta Tags Generated via https://www.opengraph.xyz -->
<style>
.github-corner {
position: absolute;
top: 0;
border: 0;
right: 0;
}
/* Default light mode */
.github-corner svg {
fill: rgb(10, 10, 10);
color: rgb(250, 250, 250);
}
/* System dark mode preference */
@media (prefers-color-scheme: dark) {
.github-corner svg {
fill: rgb(250, 250, 250);
color: rgb(10, 10, 10);
}
}
/* Manual theme overrides */
.light .github-corner svg,
html.light .github-corner svg {
fill: rgb(10, 10, 10) !important;
color: rgb(250, 250, 250) !important;
}
.dark .github-corner svg,
html.dark .github-corner svg {
fill: rgb(250, 250, 250) !important;
color: rgb(10, 10, 10) !important;
}
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out;
}
@keyframes octocat-wave {
0%,
100% {
transform: rotate(0);
}
20%,
60% {
transform: rotate(-25deg);
}
40%,
80% {
transform: rotate(10deg);
}
}
@media (max-width: 500px) {
.github-corner:hover .octo-arm {
animation: none;
}
.github-corner .octo-arm {
animation: octocat-wave 560ms ease-in-out;
}
}
</style>
</head>
<body>
<nav></nav>
<main>
<div id="root"></div>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script type="module" src="./src/index.tsx"></script>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
--></main>
</body>
</html>