-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<title>yikuan's dumb lens flare generator</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<center>
<svg id="flarecontainer" width="800" height="450"></svg>
<br />
<form onsubmit="return false;">
X position: <input type="number" name="x" value="200" /><input type="range" min="0" max="800" value="200"><br />
Y position: <input type="number" name="y" value="200" /><input type="range" min="0" max="450" value="200"><br />
Nova scale: <input type="number" name="novascale" value="1" step="0.1" /><input type="range" min="0" max="2" value="1" step="0.1" /><br />
Streak scale: <input type="number" name="streakscale" value="1" step="0.1" /><input type="range" min="0" max="2" value="1" step="0.1" /><br />
Seed: <input type="text" name="randseed" value="hii" /><br />
<button id="exportsvg">Export as SVG</button><br />
<button id="exportpng">Export as PNG</button>
</form>
<br />
<a href="https://github.com/yikuansun/svgflare/issues" target="_blank">Submit feedback</a>
</center>
<script src="libraries/seedrandom.js"></script>
<script src="flare.js"></script>
</body>
</html>