Skip to content

Commit 676c17e

Browse files
first commit
0 parents  commit 676c17e

25 files changed

Lines changed: 23311 additions & 0 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Github Globe Clone
2+
3+
![Globe](/static/globe.png)
4+
5+
## Introduce
6+
7+
Its a similar [github home](https://github.com/home) example page, just for fun and study. Use modular javascript to rewirte [github-globe](https://github.com/nandhakumarRNK/github-globe-clone);
8+
9+
## Live demo
10+
[github globe module](https://nandhakumarRNK.github.io/github-globe-clone/)
11+
12+
## Developer guide
13+
1. `npm install`;
14+
2. `npm start`.
15+
16+
## References
17+
1. [discoverthreejs-site](https://github.com/looeee/discoverthreejs-site);
18+
2. [three-globe](https://github.com/vasturiano/three-globe);
19+
3. [github-globe](https://github.com/nandhakumarRNK/github-globe-clone).

index.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Github globe || RNK</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1" />
6+
<meta charset="UTF-8" />
7+
<link rel="icon" href="./static/img.jpg" type="image/x-icon" />
8+
</head>
9+
<body>
10+
<div class="mainDiv">
11+
<div id="globe-container">
12+
13+
</div>
14+
<!-- <div>
15+
<div class="title">Let's build from here, together.</div>
16+
<div class="description">The complete developer platform to build, scale, and deliver secure software.</div>
17+
</div> -->
18+
</div>
19+
</body>
20+
</html>

0 commit comments

Comments
 (0)