Skip to content

Commit 8f17d9e

Browse files
author
dafeng.xdf
committed
Add pages
1 parent f5a1d9e commit 8f17d9e

File tree

7 files changed

+51
-0
lines changed

7 files changed

+51
-0
lines changed

index.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>BinaryHeap - JavaScript Implementation of the Binary Heap.</title>
6+
<link rel="stylesheet" href="page/stylesheet/index.css" />
7+
<script src="page/javascript/jquery.min.js"></script>
8+
<script src="page/javascript/pillow.min.js"></script>
9+
<script src="page/javascript/markdown.min.js"></script>
10+
<base target="_blank"/>
11+
</head>
12+
<body>
13+
<a href="https://github.com/xudafeng/BinaryHeap.git">
14+
<img id="github" src="http://gtms02.alicdn.com/tps/i2/T17kyAFydcXXax3xne-140-134.png" alt="Fork me on GitHub">
15+
</a>
16+
<div id="demonstrate">
17+
<canvas id="screen"></canvas>
18+
</div>
19+
<div id="docs"></div>
20+
<script>
21+
;(function($){
22+
$.ajax({
23+
url : './README.md',
24+
dataType : 'html',
25+
scriptCharset: 'utf-8',
26+
success : function(d){
27+
$('#docs').html(marked(d));
28+
}
29+
});
30+
})(jQuery);
31+
</script>
32+
</body>
33+
</html>

page/css/index.css

Whitespace-only changes.
File renamed without changes.

page/javascript/jquery.min.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

page/javascript/markdown.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

page/javascript/pillow.min.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

page/stylesheet/index.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#github{
2+
position: absolute;
3+
z-index: 999;
4+
top: 0px;
5+
right:0;
6+
border: 0;
7+
}

0 commit comments

Comments
 (0)