-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (25 loc) · 1008 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no, minimal-ui">
<title>hex of color</title>
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="hexC.css">
</head>
<body>
<a class="author" href="https://github.com/hitop/hexC" target="_blank">Github</a>
<div id="ctip"></div>
<div id="cIn">
<input id="cInv" class="cIn_input" type="text" name="hexc" placeholder="#82b64a" value="r6" onkeydown="hexC(event)">
<div class="cIn_apply" onclick="hexApply()">></div>
</div>
<div class="cShow" onclick="copyHexc(0)">
<input type="text" class="chex">
<span class="hexName" onclick="event.stopPropagation();copyHexc(0,this.innerHTML)">森林绿</span>
</div>
<script type="text/javascript" src="index.js"></script>
</body>
</html>