-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (47 loc) · 2 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Border Radus Previewer</title>
</head>
<body>
<div class="container">
<div class="header">
<h1>Border radius preview</h1>
</div>
<div class="box-container">
<!--Box-->
<div class="box-border" id="box">
<textarea id="box-text" rows="5" cols="35" readonly>border-radius: 1px;</textarea>
<!--border top left radius-->
<div class="box box-1">
<input type="number" class="input-border-radius" onkeyup="onChangeBorderRadius('top-left',value);" value="1" />
</div>
<!-- border top right radius-->
<div class="box box-2">
<input type="number" class="input-border-radius" onkeyup="onChangeBorderRadius('top-right',value);" value="1" />
</div>
<!-- border bottom left radius-->
<div class="box box-3">
<input type="number" class="input-border-radius" onkeyup="onChangeBorderRadius('bottom-left',value);" value="1" />
</div>
<!-- border bottom right radius-->
<div class="box box-4">
<input type="number" class="input-border-radius" onkeyup="onChangeBorderRadius('bottom-right', value);" value="1" /><br/>
</div>
</div>
</div>
<div class="div-buttons">
<p>
<input type="button" class="button button-copy" value="Copy" onclick="onCopy();">
</p>
</div>
</div>
<div class="footer">
<p>Made with <span id="heart-emoji">❤</span> by <a href="http://github.com/thiagorocha503" target="_blank" rel="noopener noreferrer" id="link-profile">Thiago</a></p>
</div>
<script src="js/app.js"></script>
</body>
</html>