-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (96 loc) · 5.03 KB
/
index.html
File metadata and controls
105 lines (96 loc) · 5.03 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head prefix="og: http://ogp.me/ns# article: http://ogp.me/ns/article#">
<meta charset="UTF-8">
<title>JS Library Map - A Visualization of Modern & Popular JavaScript Libraries</title>
<meta property="og:title" content="JS Library Map - A Visualization of Modern & Popular JavaScript Libraries" >
<meta property="og:type" content="product" />
<meta property="og:description" content="JS Library Map shows a list of modern & popular JavaScript libraries. You can see the information and characteristics of each library." />
<meta property="og:url" content="http://tejitak.github.io/js-library-map/" />
<meta property="og:image" content="http://tejitak.github.io/js-library-map/img/ogp-image.png" />
<meta property="og:site_name" content="JS Library Map - A Visualization of Modern & Popular JavaScript Libraries" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1" />
<meta name="format-detection" content="telephone=no" />
<!-- <link rel="shortcut icon" href="./favicon.ico" /> -->
<link href="//fonts.googleapis.com/css?family=Roboto:400,300,700" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="./css/main.css" />
</head>
<body id="app">
<div v-show="initialized">
<div class="component__main container">
<article class="component__map-view">
<vue-map v-with="items: items"></vue-map>
</article>
<aside class="component__option-lists" role="tabs" v-show="navigationOpened">
<vue-tab v-with="items: items, keywords: keywords"></vue-tab>
</aside>
</div>
<footer class="component__footer">
<h1 class="servive-name"><span>JS Library Map</span></h1>
<nav class="footer_navigations">
<a class="nav_item" v-on="click: toggleAboutUs" herf="javascript:void(0);">What's JS Library Map</a>
<span class="deactive nav_item">Register a library</span>
</nav>
<div class="copyright">
<p>Created by <a href="https://twitter.com/tejitak" target="_blank">tejitak</a></p>
</div>
<div class="footer_menu"><a href="javascript:;" class="nav_item" v-on="click: toggleNavigation()">MENU</a></div>
<div class="social_container">
<div class="social_item twitter">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://tejitak.github.io/js-library-map/" data-via="" data-lang="en">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
<div class="social_item" style="position: relative; top: -4px;">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/ja_JP/sdk.js#xfbml=1&version=v2.0";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-like" data-href="http://tejitak.github.io/js-library-map/" data-layout="button_count" data-action="like" data-show-faces="false" data-share="false"></div>
</div>
<div class="social_item github">
<iframe src="http://ghbtns.com/github-btn.html?user=tejitak&repo=js-library-map&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="104px" height="20px"></iframe>
</div>
</div>
</footer>
<!-- components -->
<vue-popup v-show="popupOpened" v-transition="expand" title="{{selectedItem.name}}" v-with="loading: loading" v-draggable>
<vue-popup-content v-with="selectedItem"></vue-popup-content>
</vue-popup>
<div class="component__drawer" v-component="vue-drawer" v-show="drawerOpened" v-transition="slide">
<section class="about layout_section">
<h2 class="heading-2">JS Library Map</h2>
<div class="descriptions">
<p>JS Library Map visualizes a list of modern & popular JavaScript libraries with their icons.</p>
<p>You can see the information and characteristics of each library.</p>
</div>
</section>
<section class="members layout_section last">
<dl class="profile" v-repeat="creators">
<dt class="profile_photo">
<img v-attr="src: img" />
</dt>
<dd class="profile_body">
<a v-attr="href: url" target="_blank">
<p class="profile_job">{{job}}</p>
<p class="profile_name">{{name}}</p>
</a>
</dd>
</dl>
</section>
</div>
<!--/ components -->
</div>
<!-- /initialized -->
<!-- script -->
<script>
var OPTION = {
debug: true
};
</script>
<script src="./dist/main.js"></script>
</body>
</html>