git add stuff
This commit is contained in:
21
simpla/design/js/piecon/example/index.html
Normal file
21
simpla/design/js/piecon/example/index.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<!doctype html>
|
||||
<head>
|
||||
<title>Piecon / Pie charts in your favicon!</title>
|
||||
<script src="piecon.js"></script>
|
||||
<script>
|
||||
(function(){
|
||||
var count = 0;
|
||||
Piecon.setOptions({fallback: 'force'});
|
||||
var i = setInterval(function(){
|
||||
if (++count > 100) { Piecon.reset(); clearInterval(i); return false; }
|
||||
Piecon.setProgress(count);
|
||||
}, 250);
|
||||
})();
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="container">
|
||||
<h1>Piecon</h1>
|
||||
<p>A <a href="https://github.com/lipka">@lipka</a> production</p>
|
||||
</div>
|
||||
</body>
|
||||
Reference in New Issue
Block a user