Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlearn.html
More file actions
Latest commit
104 lines (100 loc) · 4.67 KB
/
Copy pathlearn.html
File metadata and controls
104 lines (100 loc) · 4.67 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>
<htmllang-"en">
<head>
<metacharset="utf-8">
<title>Pixelcode - Learn</title>
<metaname="description" content="Transform your designs into Swift code instantly.">
<metaproperty="og:image" content="./images/faviconLogo.png">
<metaname="author" content="">
<metaname="viewport" content="width=device-width, initial-scale=1">
<linkrel="stylesheet" href="skeleton.css"/>
<scriptsrc="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<scriptsrc="https://use.fontawesome.com/62036b53a1.js"></script>
<scriptsrc="./script.js"></script>
<linkrel="stylesheet" href="style.css"/>
</head>
<body>
<divid="navbar" class="navbar sticky">
<divclass="container">
<divstyle="display: flex; align-items: center; justify-content: center;" class="row">
<divclass="two columns">
<aid="logo-container" style="margin-left: 0px;" href="javascript:go_to('#main');">
<imgclass="logo" src="./images/pixelcodeText.png"/>
</a>
</div>
<divclass="ten columns right-align">
<divclass="button-div">
<aclass="button-a" href="index.html">GET EARLY ACCESS</a>
</div>
</div>
</div>
</div>
</div>
<divid="learn" class="section">
<divclass="container">
<divclass="row">
<divclass="twelve columns">
<h4class="u-bold u-brand" style="margin-bottom:2em; margin-top: 3em;">Learn</h4>
</div>
</div>
<divclass="row">
<divclass="four columns">
<imgclass="mockup" src="./images/mockup.png"></img>
</div>
<divclass="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>
<divclass="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>
<divclass="four columns" style="margin-bottom: 1em;">
<h5>Buttons</h5>
<h6>Buttons within a cell must be labeled <code>[Name]Button</code></h6>
</div>
<divclass="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>
<divclass="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>
<divclass="four columns" style="margin-bottom: 1em;">
<h5>All Supported Components</h5>
<ahref="learn.html"><button>Read Documentation</button></a>
</div>
</div>
</div>
</div>
</div>
<divid="footer" class="footer">
<divclass="container">
<divclass="row">
<divclass="one columns" style="display: flex;">
<ahref="javascript:go_to('#main');"><imgid="footer-icon" src="./images/logo.svg"></img></a>
</div>
<divclass="four columns">
<h6style="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>
<divclass="six columns offset-by-one footer-links">
<aclass="footer-a" target="_blank" href="https://www.facebook.com/pixelcodeio">
<iclass="fa fa-facebook-official fa-2x" aria-hidden="true"></i>
</a>
<aclass="footer-a" target="_blank" href="https://twitter.com/pixelcodeio">
<iclass="fa fa-twitter fa-2x" aria-hidden="true"></i>
</a>
<aclass="footer-a" target="_blank" href="https://medium.com/@pixelcodeio">
<iclass="fa fa-medium fa-2x" aria-hidden="true"></i>
</a>
<aclass="footer-a" target="_blank" href="https://linkedin.com/company/pixelcodeio">
<iclass="fa fa-linkedin fa-2x" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>