-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (118 loc) · 4 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
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
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://api.fontshare.com/v2/css?f[]=satoshi@300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Frame</title>
</head>
<body>
<main>
<div class="main-content">
<h1 class="title">Frame</h1>
<div class="frame"></div>
</div>
<div class="dock-mobile">
</div>
<div class="dock">
<button>Image Settings</button>
<button>Aspect Ratio</button>
<button>Gradient Settings</button>
<button>Text Settings</button><button>Blah</button>
</div>
<div class="imgtype-div">
<div class="pure-image">
<p>Image</p>
<button></button>
</div>
<div class="gradient-bg">
<p>Gradient</p>
<button></button>
</div>
<div class="color-bg">
<p>Color</p>
<button></button>
</div>
</div>
</main>
<script src="/menus.js" type="module"></script>
<script src="/gradient.js" type="module"></script>
<script src="/pureimage.js" type="module"></script>
<!-- <script src="purecolor.js" type="module"></script>
<script src="aspectratio.js" type="module"></script>
-->
<script src="/imagetype.js" type="module"></script>
<script src="/main.js" type="module"></script>
</body>
</html>
<!-- <input type="file" accept="image/*" id="img-upload" /> -->
<!-- <div id="img-div" class="frame"></div> -->
<!-- <div id="content">
<input type="text" id="text-input" />
<button id="text-submit">Add Text</button>
<a href="" id="download-link" download>Download Image</a>
</div>
<select id="font-select">
<option
value="General Sans"
style="font-family: 'General Sans', sans-serif"
>
General Sans
</option>
<option
value="Cabinet Grotesk"
style="font-family: 'Cabinet Grotesk', sans-serif"
>
Cabinet Grotesk
</option>
<option value="Chillax" style="font-family: 'Chillax', sans-serif">
Chillax
</option>
<option value="Gambarino" style="font-family: 'Gambarino', serif">
Gambarino
</option>
<option value="Boska" style="font-family: 'Boska', serif">
Boska
</option>
<option value="Aktura" style="font-family: 'Aktura', serif">
Aktura
</option>
<option
value="Pramukh Rounded"
style="font-family: 'Pramukh Rounded', sans-serif"
>
Pramukh Rounded
</option>
</select>
</div> -->
<!-- <div class="imgtype-div">
<div class="pure-image">Image</div>
<div class="color-bg">Pure Color</div>
<div class="gradient-bg">Gradient Background</div>
</div>
<div class="bottom">
<div class="img-select-div">
<img src="/assets/1.jpg" alt="" id="img-1" class="img-1" />
<img src="/assets/2.jpg" alt="" id="img-2" class="img-2" />
<img src="/assets/3.jpg" alt="" id="img-3" class="img-3" />
<img src="/assets/4.jpg" alt="" id="img-4" class="img-4" />
</div>
<div class="link-img">
<label for="Text">Or add link to image:</label>
<input type="text" />
<button class="link-img-button">Add</button>
</div>
<div class="aspect-ratios">
<div class="one-one">1 / 1</div>
<div class="four-five">4 / 5</div>
<div class="nineone-one">1.91: 1</div>
<div class="sixteen-nine">16: 9</div>
</div>
<div>
<input type="color" class="color-bg-input" />
</div> -->