-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
57 lines (49 loc) · 2.13 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
<!DOCTYPE HTML>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>ixedit</title>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/jquery-ui-git.js"></script>
<script type="text/javascript" src="ixedit.js"></script>
<link type="text/css" rel="stylesheet" charset="utf-8" href="ixedit.css">
</head>
<body>
<div id="header" style="border-left: 5px solid #000">
<nav>
<ul style="list-style-type: none">
<li class="fork"><a href="https://github.com/perchouli/ixedit">View On GitHub</a></li>
<li class="downloads"><a href="https://github.com/perchouli/ixedit/zipball/master">ZIP</a></li>
<li class="downloads"><a href="https://github.com/perchouli/ixedit/tarball/master">TAR</a></li>
<li class="title">DOWNLOADS</li>
</ul>
</nav>
</div><!-- end header -->
<div class="wrapper container">
<div class="row">
<div id="title">
<h1>Ixedit</h1>
<p>IxEdit is a JavaScript-based interaction design tool for the web</p>
<hr>
<span class="credits left">Project maintained by <a href="https://github.com/perchouli">perchouli</a></span>
</div>
<h3>Install.</h3>
<p> Load these required files</p>
<blockquote>
<xmp>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/jquery-ui-git.js"></script>
<script type="text/javascript" src="http://rawgit.com/perchouli/ixedit/master/ixedit.js"></script>
<link href="http://rawgit.com/perchouli/ixedit/master/ixedit.css" rel="stylesheet">
</xmp>
</blockquote>
<p>Now, you can see the IxEdit dialog like this page.</p>
<h3>Testing</h3>
<input id="id_testing_text" type="text"/>
<h3>Support or Contact</h3>
<p>Having trouble? Welcome contact <a href="mailto:[email protected]">[email protected]</a> and we’ll help you sort it out.</p>
</div>
</div>
<!--[if !IE]><script>fixScale(document);</script><!--<![endif]-->
</body>
</html>