-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (86 loc) · 4.47 KB
/
index.html
File metadata and controls
96 lines (86 loc) · 4.47 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
<!doctype html>
<html lang="en-US" class="notranslate">
<head>
<title>AnySection</title>
<script src="https://cdn.jsdelivr.net/npm/p5@1.3.0/lib/p5.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="popup.css">
<link rel="icon" type="image/x-icon" href="assets/ico/favicon.ico">
<link rel='stylesheet' href='https://cdn-uicons.flaticon.com/uicons-regular-rounded/css/uicons-regular-rounded.css'>
<script src="script.js" defer></script>
<script>
window.location = "https://any-section.web.app/";
</script>
</head>
<body>
<div>
<h1>
<!--AnySection-->
</h1>
<img src="assets/ico/tool-logo.png" alt="AnySection" class="tool-logo">
<h3>Select a profile shape</h3>
<button class="new-feature">New in v1.4!</button>
<div class="new-feature">
<p style="font-weight: bold;">Calculate simple math with the new editor</p>
<video src="assets/vid/exp-editor.mp4" autoplay loop controls></video>
<ol>
<li>Select any of the data inputs (blue)</li>
<li>Press the "=" key</li>
<li>Digit your expression</li>
<li>Confirm by clicking the button or "Enter" on your keyboard</li>
<li>The result will be pasted into the input field</li>
</ol>
</div>
</div>
<div id="main">
<div class="container" id="container"></div>
<div class="menu">
<a href="pages/equations.html"><i class="fi-rr-square-root"></i><span>Equations</span></a>
<a href="https://github.com/TerribleCoding/AnySection" target="_blank"><i
class="fi-rr-book"></i></i><span>Help</span></a>
<a href="#" onclick="openCredits()"><i class="fi-rr-copyright"></i><span>Credits</span></a>
<a href="https://www.buymeacoffee.com/terriblecoding" target="_blank"><i
class="fi-rr-dollar"></i><span>Support</span></a>
</div>
</div>
<div id="credits" style="display: none;" class="popup blur">
<div class="outer">
<div class="content">
<close onclick="closeCredits()"><i class="fi-rr-cross"></i></close>
<img src="assets/ico/tool-logo.png" alt="AnySection" height="50">
<a href="https://github.com/TerribleCoding/AnySection/releases" target="_blank"
style="position: relative; left: 0.5em; bottom: 12px;">v1.4</a>
<br>
<span>This project is developed by</span>
<a href="https://terriblecoding.github.io" target="_blank">
<img src="assets/ico/TClogo-inline.svg" class="logo">
</a>
<span class="copyright">and hosted on</span>
<a href="https://github.com" target="_blank" style="position: relative; bottom: 4px;">
<img src="assets/ico/GitHub_logo_2013-light.svg" class="logo">
</a>
<h4>Need help?</h4>
<a href="https://github.com/TerribleCoding/AnySection" target="_blank">
<button><i class="fi-rr-book"></i>See documentation</button>
</a>
<a href="mailto:terriblecoding@outlook.it">
<button><i class="fi-rr-envelope"></i>Send me an email</button>
</a>
<h4>Found a bug?</h4>
<a href="https://github.com/TerribleCoding/AnySection/issues" target="_blank">
<button><i class="fi-rr-bug"></i>Report issue on Github</button>
</a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLScoCE_ktEacbnlTXvYtjH8emqE7fuhbBBAzJKn6cfotEIgfwA/viewform?usp=sf_link" target="_blank">
<button class="secondary"><i class="fi-rr-interrogation"></i>I don't use Github</button>
</a>
<h4>License</h4>
<p style="font-size: small;">This product is intended for digital use only. It is prohibited to copy or distribute the whole or part of it, unless accorded between the parts.</p>
<p style="font-size: small;">© Terrible Coding <span id="year"></span></p>
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
</div>
</div>
</div>
</body>
</html>