-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·70 lines (62 loc) · 3.02 KB
/
index.html
File metadata and controls
executable file
·70 lines (62 loc) · 3.02 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
<!doctype html>
<html lang="en" data-framework="circularJS">
<head>
<meta charset="utf-8">
<title>Circular.js • demo</title>
<link rel="stylesheet" type="text/css" href="demos/index.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/prism.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/themes/prism.css">
<!-- <script type="text/javascript" src="amd.js"></script>
<script type="text/javascript" src="toolbox.js"></script>
<script type="text/javascript" src="VArray.js"></script>
<script type="text/javascript" src="schnauzer.js"></script>
<script type="text/javascript" src="blick.js"></script>
<script type="text/javascript" src="api.js"></script>
<script type="text/javascript" src="controller.js"></script>
<script type="text/javascript" src="circular.js"></script> -->
<script type="text/javascript" src="circular.min.js"></script>
<script type="text/javascript" src="demos/amd.cfg.js"></script>
</head>
<body>
<!-- CircularJS LOGO -->
<div class="circularjs">
<div class="circularjs-logo"></div>
<div class="circularjs-text">
ircul<span class="span">a</span>r<em class="em">JS</em>
</div>
<div class="circularjs-creator">
by <em class="em">WeekendProductions<sup class="sup">©</sup></em>
</div>
</div>
<a class="a-inline" href="https://github.com/PitPik/circularjs"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://github.blog/wp-content/uploads/2008/12/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
<p><strong>CircularJS</strong>, the tiny but mighty and fast, progressive MV* like SPA creation tool for desktop and mobile.</p>
<p>Below you can see a demo with component builder, routing and module/widget loader that again shows some demos that explain data-binding, dynamic model manipulation, ...</p>
<p>See other demos:</p>
<ul>
<li><a href="demos/minesweeper/">Minesweeper</a></li>
<li><a href="demos/todo/">Todo</a></li>
<li><a href="demos/heroes/">Heroes</a></li>
<li><a href="demos/performance/">Performance test</a> (up to 128000 items/s)</li>
<li><a href="demos/DBMonster/">Performance test DBMonster</a>
(<a href="http://mathieuancelin.github.io/js-repaint-perfs/" target="_blank">REPAINT RATE CHALLENGE</a>)
(<a href="https://www.youtube.com/watch?v=z5e7kWSHWTg&feature=youtu.be&t=146" target="_blank">See React.js Conf video</a>)</li>
<li><a href="demos/sierpinski/">Performance test Sierpinski</a></li>
</ul>
<section class="demo">
<demo-nav>
<span class="wrapper">
{{#each %menu}}
<a class="{{#if %active}}active{{/if}}" href="#/{{action}}">
{{@number}} {{title}}
</a>
{{#unless @last}}|{{/unless}}
{{/each}}
</span>
</demo-nav>
</section>
</body>
<!-- <script type="text/javascript" src="demos/index.js"></script> -->
<script type="text/javascript">
require(['home'], function(){});
</script>
</html>