mirror of
https://github.com/google/blockly.git
synced 2026-01-08 17:40:09 +01:00
* chore(demos): delete codelab folder * chore(demos): delete custom dialog demo * chore(demos): delete custom fields demos * chore(demos): delete fixed injection demo * chore(demos): delete generator demo * chore(demos): delete interpreter demos * chore(demos): delete max blocks demo * chore(demos): delete graph demo * chore(demos): remove deleted demos from index.html
152 lines
3.7 KiB
HTML
152 lines
3.7 KiB
HTML
<!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="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="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="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 leader-follower.</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="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=173>
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<div><a href="blockfactory/index.html">Blockly Developer Tools</a></div>
|
|
<div>Build custom blocks and setup a toolbox using Blockly.</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<a href="keyboard_nav/index.html">
|
|
<img src="keyboard_nav/icon.png" height=80 width=150>
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<div><a href="keyboard_nav/index.html">Keyboard Navigation</a></div>
|
|
<div>Demos keyboard navigation.</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|