-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (54 loc) · 1.73 KB
/
index.html
File metadata and controls
77 lines (54 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="rgb(0, 30, 85)"/>
<link rel='manifest' href="manifest.json">
<title>Color Selector</title>
<script src="jquery3.js" type="text/javascript" charset="utf-8"></script>
<!-- HTML -->
<!-- Project -->
<script src="MyfunctionsLib.js"></script>
<style>
body{
padding:0;
margin: 0;
}
</style>
<!-- Custom Styles -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<canvas>Js canvas not found </canvas>
<div id="bgCtn">
<div id="bg"></div>
<span><button class="copyBtn">copy </button> <span>: rgba(0,0,0,0)</span></span>
</div>
<!-- <label style="padding:10px;background:#100000;top:0; display:block; color: white;" for="file">Choose Image you want to select color from <i style="color:lightgray;">click here</i></label>
!-->
<div id="messageCtn">
<div id="message">
<nav>
<div><span>Color </span><span> Selector</span></div>
<button for="file" style="color:white;" class="fa fa-area-chart"></button>
</nav>
<h1>Image <span > Color</span> Selector</h1><br>
<div id="msgTxt">
<span>Select color from Image with this simple color Selector <br><b>Steps : </b>
<br>Choose Image from your PC
<br>click or tap on the color area you want to choose.
<br> then the color rgba value will be printed for you to copy.
</span>
</div>
<br><br>
<div style="text-align:center;">
<label for="file">Choose Image <cite class="fa fa-angle-double-right"></cite></label>
</div>
</div>
</div>
<input type="file" id="file" hidden>
<script src="main.js"></script>
</body>
</html>