blob: bd745ce8869547319fc0cc6c5f037e30c7b8a09f (
plain)
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Blockly Demos</title>
<style>
body {
margin: 0 10%;
background-color: #fff;
font-family: sans-serif;
}
h1 {
font-weight: normal;
font-size: 140%;
}
td {
padding: 1ex;
}
img {
border: none;
}
</style>
</head>
<body>
<h1><a href="https://developers.google.com/blockly/">Blockly</a> > Demos</h1>
<p>These demos are intended for developers who want to integrate Blockly with
their own applications.</p>
<table>
<tr>
<td>
<a href="fixed/index.html">
<img src="fixed/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="fixed/index.html">Fixed Blockly</a></div>
<div>Inject Blockly into a page as a fixed element.</div>
</td>
</tr>
<tr>
<td>
<a href="resizable/index.html">
<img src="resizable/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="resizable/index.html">Resizable Blockly</a></div>
<div>Inject Blockly into a page as a resizable element.</div>
</td>
</tr>
<tr>
<td>
<a href="toolbox/index.html">
<img src="toolbox/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="toolbox/index.html">Defining the Toolbox</a></div>
<div>Organize blocks into categories for the user.</div>
</td>
</tr>
<tr>
<td>
<a href="maxBlocks/index.html">
<img src="maxBlocks/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="maxBlocks/index.html">Maximum Block Limit</a></div>
<div>Limit the total number of blocks allowed (for academic exercises).</div>
</td>
</tr>
<tr>
<td>
<a href="generator/index.html">
<img src="generator/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="generator/index.html">Generate JavaScript</a></div>
<div>Turn blocks into code and execute it.</div>
</td>
</tr>
<tr>
<td>
<a href="headless/index.html">
<img src="headless/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="headless/index.html">Headless</a></div>
<div>Generate code from XML without graphics.</div>
</td>
</tr>
<tr>
<td>
<a href="interpreter/index.html">
<img src="interpreter/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="interpreter/index.html">JS Interpreter</a></div>
<div>Step by step execution in JavaScript.</div>
</td>
</tr>
<tr>
<td>
<a href="graph/index.html">
<img src="graph/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="graph/index.html">Graph</a></div>
<div>Instant updates when blocks are changed.</div>
</td>
</tr>
<tr>
<td>
<a href="rtl/index.html">
<img src="rtl/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="rtl/index.html">RTL</a></div>
<div>See what Blockly looks like in right-to-left mode (for Arabic and Hebrew).</div>
</td>
</tr>
<tr>
<td>
<a href="storage/index.html">
<img src="storage/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="storage/index.html">Cloud Storage</a></div>
<div>Save and load blocks with App Engine.</div>
</td>
</tr>
<tr>
<td>
<a href="mirror/index.html">
<img src="mirror/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="mirror/index.html">Mirrored Blockly</a></div>
<div>Two Blockly instances connected as master-slave.</div>
</td>
</tr>
<tr>
<td>
<a href="accessible/index.html">
<img src="accessible/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="accessible/index.html">Accessible Blockly</a></div>
<div>Version of Blockly accessible to screen readers.</div>
</td>
</tr>
<tr>
<td>
<a href="plane/index.html">
<img src="plane/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="plane/index.html">Plane</a></div>
<div>Using Closure Templates to support 35 languages.</div>
</td>
</tr>
<tr>
<td>
<a href="code/index.html">
<img src="code/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="code/index.html">Code Editor</a></div>
<div>Export a Blockly program into JavaScript, Python, PHP, Lua, Dart, or XML.</div>
</td>
</tr>
<tr>
<td>
<a href="blockfactory/index.html">
<img src="blockfactory/icon.png" height=80 width=100>
</a>
</td>
<td>
<div><a href="blockfactory/index.html">Block Factory</a></div>
<div>Build custom blocks using Blockly.</div>
</td>
</tr>
</table>
</body>
</html>
|