mirror of
https://github.com/google/blockly.git
synced 2026-01-05 08:00:09 +01:00
50 lines
1.4 KiB
HTML
50 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Blockly Demos</title>
|
|
<style>
|
|
body {
|
|
background-color: #fff;
|
|
font-family: sans-serif;
|
|
}
|
|
h1 {
|
|
font-weight: normal;
|
|
font-size: 140%;
|
|
}
|
|
dt {
|
|
margin-top: 2ex;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1><a href="https://blockly.googlecode.com/">Blockly</a> > Demos</h1>
|
|
|
|
<p>These demos are intended for developers who want to integrate Blockly with
|
|
their own applications.</p>
|
|
|
|
<dl>
|
|
<dt><a href="fixed/index.html">Fixed Blockly</a></dt>
|
|
<dd>Inject Blockly into a page as a fixed element.</dd>
|
|
|
|
<dt><a href="iframe/index.html">Resizable Blockly</a></dt>
|
|
<dd>Inject Blockly into a page as a resizable element.</dd>
|
|
|
|
<dt><a href="toolbox/index.html">Defining the Toolbox</a></dt>
|
|
<dd>Organize blocks into categories for the user.</dd>
|
|
|
|
<dt><a href="rtl/index.html">RTL</a></dt>
|
|
<dd>See what Blockly looks like in right-to-left mode (for Arabic and Hebrew).</dd>
|
|
|
|
<dt><a href="maxBlocks/index.html">Maximum Block Limit</a></dt>
|
|
<dd>Limit the total number of blocks allowed (for academic exercises).</dd>
|
|
|
|
<dt><a href="generator/index.html">Generate JavaScript</a></dt>
|
|
<dd>Turn blocks into code and execute it.</dd>
|
|
|
|
<dt><a href="storage/index.html">Cloud Storage</a></dt>
|
|
<dd>Save and load blocks with App Engine.</dd>
|
|
</dl>
|
|
</body>
|
|
</html>
|