-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsvg.html
More file actions
executable file
·54 lines (53 loc) · 2.6 KB
/
svg.html
File metadata and controls
executable file
·54 lines (53 loc) · 2.6 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
<!DOCTYPE html>
<html>
<head>
<title>SvgPathTester</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/main.css" rel="stylesheet" media="screen">
<script src="js/jquery/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
<script src="js/svg.js"></script>
</head>
<body class="container default_body_style">
<nav class="navbar navbar-static-top" id="navbar" role="navigation">
<div class="container-fluid">
<div class="nav navbar-nav navbar-left">
<div class="navbar-text">
<a href="index.html"><span class="glyphicon glyphicon-chevron-left large-size"></span></a>
<span class="large-size">SVG Path Tester</span>
</div>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-btn navbar-right">
<li>
<img alt="NaikSoftware" src="https://avatars0.githubusercontent.com/u/4218994?v=3&s=48"/>
</li>
</ul>
</div>
</div>
</nav>
<div class="panel panel-default">
<div class="panel-heading"><h4 class="text-center"><span class="glyphicon glyphicon-th-large"></span> Result</h4></div>
<div class="panel-body" style="text-align: center; min-height: 200px;">
<svg xmlns="http://www.w3.org/2000/svg">
<path id="svg_path" d=""></path>
</svg>
</div>
</div>
<div class="panel panel-success col-lg-12">
<div class="panel-body">
<textarea id="input_text" class="col-lg-8 container-fluid" style="min-height: 100px; width: 100%; font-size: 20px;">M 0 0 A 10 10 0 0,1 0 100</textarea>
<div class="col-lg-offset-4 pull-right" style="margin: 10px; margin-bottom: 20px;">
<a id="btn_process" class="btn btn-default"><span class="glyphicon glyphicon-refresh pull-left" style="margin-right: 7px; margin-top: 3px;"></span>Process</a>
</div>
</div>
</div>
<div class="bottom text-center text-info" style="margin-bottom: 10px">
<span class="glyphicon glyphicon-copyright-mark"></span>
<span class="text-info">NaikSoftware</span>
</div>
</body>
</html>