forked from mynameisraj/ig-wall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfacebookindex.html
executable file
·45 lines (38 loc) · 1.77 KB
/
facebookindex.html
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
<!DOCTYPE html>
<html>
<head>
<title>Treemap for Facebook</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="">
<meta name="description" content="">
<link rel="stylesheet" href="stylesheets/style.css">
<script src="javascripts/d3.v2.min.js"></script>
<script src="javascripts/zoom.js"></script>
<script type="text/javascript" src="//use.typekit.net/xvm2guf.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
</head>
<body>
<noscript>Please return with some JavaScript. Thanks!</noscript>
<div class="auth">
<h1>Treemap for Facebook</h1>
<p>Displays your photos in a beautifully designed treemap</p>
<p>Forked from Raj Ramamurthy's <a href="http://mynameisraj.com/ig" target="blank">Instawall.</a></p>
<p>Adapted for Facebook by <a href="http://twitter.com/mjmayank1" target="blank">Mayank</a>.</p>
<form action="" method="GET">
<input type="radio" name="album" value="profile">Profile Pictures<br>
<input type="radio" name="album" value="recent">Recent Photos<br>
<div id="form" style="display:none">
Friend (<a href="https://www.facebook.com/help/usernames" target="blank">username</a>): <input type="text" id="friendbox" name="friend"><br>
<a onclick="hideForm(friendbox)" class="auth-button">Back</a>
</div>
<input type="button" class="auth-button" value="Go!" onclick="login(this.form)">
</form>
<button onclick="showForm()" class="auth-button" id="viewfriend">View a Friend</button><br>
</div>
<div id="chart"></div>
<div id="fb-root"></div>
<div id="pagelike" class="fb-like" data-href="http://mjmayank.com/treemap" data-width="450" data-show-faces="true"></div>
<script src="javascripts/script.js"></script>
</body>
</html>