-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlearn.html
104 lines (100 loc) · 4.67 KB
/
learn.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
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>
<html lang-"en">
<head>
<meta charset="utf-8">
<title>Pixelcode - Learn</title>
<meta name="description" content="Transform your designs into Swift code instantly.">
<meta property="og:image" content="./images/faviconLogo.png">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="skeleton.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://use.fontawesome.com/62036b53a1.js"></script>
<script src="./script.js"></script>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div id="navbar" class="navbar sticky">
<div class="container">
<div style="display: flex; align-items: center; justify-content: center;" class="row">
<div class="two columns">
<a id="logo-container" style="margin-left: 0px;" href="javascript:go_to('#main');">
<img class="logo" src="./images/pixelcodeText.png"/>
</a>
</div>
<div class="ten columns right-align">
<div class="button-div">
<a class="button-a" href="index.html">GET EARLY ACCESS</a>
</div>
</div>
</div>
</div>
</div>
<div id="learn" class="section">
<div class="container">
<div class="row">
<div class="twelve columns">
<h4 class="u-bold u-brand" style="margin-bottom:2em; margin-top: 3em;">Learn</h4>
</div>
</div>
<div class="row">
<div class="four columns">
<img class="mockup" src="./images/mockup.png"></img>
</div>
<div class="four columns" style="margin-bottom: 1em;">
<h5>List Views</h5>
<h6>These are defined by a group with <code>[Name]ListView</code>. There is an optional <code>bound</code> rectangle that defines the wash, and everything else must be inside groups called <code>[Name]Cell</code></h6>
</div>
<div class="four columns" style="margin-bottom: 1em;">
<h5>Tab Bars</h5>
<h6>Tab bars must be in a group with <code>tabBar</code> in its name. Active tab bar buttons must contain <code>activeTabButton</code> in its name. Nonactive must contain <code>tabButton</code> in its name.</h6>
</div>
<div class="four columns" style="margin-bottom: 1em;">
<h5>Buttons</h5>
<h6>Buttons within a cell must be labeled <code>[Name]Button</code></h6>
</div>
<div class="four columns" style="margin-bottom: 1em;">
<h5>Labels (Text)</h5>
<h6>Text do not have to be specifically labeled! Just the <code>[Name]</code> is fine.</h6>
</div>
<div class="four columns" style="margin-bottom: 1em;">
<h5>Images</h5>
<h6>Images, polygons, paths, circles do not have to be specifically labeled! Just the <code>[Name]</code> is fine.</h6>
</div>
<div class="four columns" style="margin-bottom: 1em;">
<h5>All Supported Components</h5>
<a href="learn.html"><button>Read Documentation</button></a>
</div>
</div>
</div>
</div>
</div>
<div id="footer" class="footer">
<div class="container">
<div class="row">
<div class="one columns" style="display: flex;">
<a href="javascript:go_to('#main');"><img id="footer-icon" src="./images/logo.svg"></img></a>
</div>
<div class="four columns">
<h6 style="color: #999999; margin-bottom: 4em;" class="u-light">Pixelcode makes your iOS development process faster so you have more time creating the best product possible.</h6>
</div>
<div class="six columns offset-by-one footer-links">
<a class="footer-a" target="_blank" href="https://www.facebook.com/pixelcodeio">
<i class="fa fa-facebook-official fa-2x" aria-hidden="true"></i>
</a>
<a class="footer-a" target="_blank" href="https://twitter.com/pixelcodeio">
<i class="fa fa-twitter fa-2x" aria-hidden="true"></i>
</a>
<a class="footer-a" target="_blank" href="https://medium.com/@pixelcodeio">
<i class="fa fa-medium fa-2x" aria-hidden="true"></i>
</a>
<a class="footer-a" target="_blank" href="https://linkedin.com/company/pixelcodeio">
<i class="fa fa-linkedin fa-2x" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>