From e7f04c0807d04655a004dfcdc8d5a2676c2828ea Mon Sep 17 00:00:00 2001 From: miguel Date: Sat, 17 Oct 2020 15:04:13 +1100 Subject: [PATCH] First check in --- .vscode/launch.json | 15 ++ index.html | 265 +++++++++++++++++++++++++++++++++++ magloop.css | 57 ++++++++ magloop.html | 327 +++++++++++++++++++++++++++++++++++--------- 4 files changed, 600 insertions(+), 64 deletions(-) create mode 100644 .vscode/launch.json create mode 100644 index.html create mode 100644 magloop.css diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..7a9dfa0 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "pwa-chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..bb35828 --- /dev/null +++ b/index.html @@ -0,0 +1,265 @@ + + + + + + VK3CPU Magloop Solver + + + +
Miguel VK3CPU - Magloop Antenna Calculator
+ + 3D Antenna Radiation Pattern Canvas + + + 2D Chart Canvas + +
+
+ + + (m) +
+
+ + + (mm) +
+
+ + + +
+
+ + + (W) +
+
+ + + (m) +
+
+ + + + + \ No newline at end of file diff --git a/magloop.css b/magloop.css new file mode 100644 index 0000000..8d5bf8a --- /dev/null +++ b/magloop.css @@ -0,0 +1,57 @@ +body { + background: rgb(196, 122, 77); + margin: 0px; +} +header { + background: black; + color: white; + font-family: 'Courier New', Courier, monospace; + text-align: center; +} +canvas { + background: white; + width: 100%; + height: 200px; + margin: auto; + border: 3px solid #ff0000; + display: block; + box-sizing: border-box; +} +section.spreadsheet { + background: grey; + display: flex; + flex-direction: row; +} + +section.spreadsheet div { + background: lightblue; + display: inline-block; + margin: auto; + margin-top: 0%; + width: auto; + text-align: center; +} +section.spreadsheet div.first-col { + text-align: right; +} + +section.controls div { + background:yellow; +} + +section.controls div label { + background:rgb(94, 245, 94); + display: inline-block; + width: 180px; + text-align: right; +} + +section.controls div input { + background:lightsalmon; + display: inline-block; + width: 300px; +} + +footer { + background: white; +} diff --git a/magloop.html b/magloop.html index 32b9bb7..bb35828 100644 --- a/magloop.html +++ b/magloop.html @@ -1,66 +1,265 @@ - + - - - - jQuery UI Slider - Multiple sliders - - - - - - - - - - -

- - Master volume -

- -
- -

- - Graphic EQ -

- -
- 88 - 77 - 55 - 33 - 40 - 45 - 70 -
- - - + + + + VK3CPU Magloop Solver + + + +
Miguel VK3CPU - Magloop Antenna Calculator
+ + 3D Antenna Radiation Pattern Canvas + + + 2D Chart Canvas + +
+
+ + + (m) +
+
+ + + (mm) +
+
+ + + +
+
+ + + (W) +
+
+ + + (m) +
+
+ + + + \ No newline at end of file