forked from DragonBones/dragonbones.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.html
More file actions
104 lines (100 loc) · 4.66 KB
/
help.html
File metadata and controls
104 lines (100 loc) · 4.66 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype html>
<!--[if lt IE 7 ]><html lang="en" class="no-js ie6"><![endif]-->
<!--[if IE 7 ]><html lang="en" class="no-js ie7"><![endif]-->
<!--[if IE 8 ]><html lang="en" class="no-js ie8"><![endif]-->
<!--[if IE 9 ]><html lang="en" class="no-js ie9"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><html lang="en" class="no-js" ><!--<![endif]-->
<head>
<title>DragonBones Help</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Flash 2D skeleton animation system">
<meta http-equiv="cleartype" content="on">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-target=".navbar">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="brand" href="index.html">DragonBones</a>
<div class="nav-collapse">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="demo.html">Demo</a></li>
<li><a href="download.html">Download</a></li>
<li class="active"><a href="#">Help</a></li>
</ul>
</div>
</div>
</div>
</div>
<div id="content">
<div class="container-fluid">
<div class="row-fluid">
<div class="span10 offset1">
<section>
<div class="page-header">
<h3>Getting Started</h3>
</div>
<p>Follow our very important getting started guide (<a href="getting_started_en.html">English</a>, <a href="getting_started_cn.html">中文</a>) to learn how to setup and use DragonBones in your project.</p>
</section>
<section>
<div class="page-header">
<h3>API Reference</h3>
</div>
<p>Consult the <a href="asdoc/index.html">DragonBones API Reference</a> for specific information about all classes and methods.</p>
</section>
<section>
<div class="page-header">
<h3>Wiki</h3>
</div>
<p>Find additional information on DragonBones GitHub <a href="https://github.com/DragonBones/SkeletonAnimationLibrary/wiki">Wiki</a>.</p>
</section>
<section>
<div class="page-header">
<h3>Badges</h3>
</div>
<p>Show your love by adding one of our beautiful <a href="badges.html">powered-by badges</a> to your application.</p>
</section>
</div>
</div>
</div>
</div>
<div id="footer">
<div class="container-fluid">
<div class="row-fluid">
<ul class="nav nav-pills pull-right">
<li><a href="http://twitter.com/dragonbonesteam">Follow Us on Twitter</a></li>
<li><a href="http://weibo.com/u/3064343903">Follow Us on Weibo</a></li>
<li><a href="about_us.html">About Us</a></li>
<li><a href="mailto:dragonbonesteam@gmail.com">Contact Us</a></li>
</ul>
</div>
<div class="row-fluid">
<div class="span6 offset3">
<p class="copyright">© 2012 The DragonBones Team </p>
</div>
</div>
</div>
</div>
</body>
<!-- Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-35106030-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</html>