forked from pastorenue/plotly.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (131 loc) · 6.17 KB
/
Copy pathindex.html
File metadata and controls
150 lines (131 loc) · 6.17 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
---
title: Plotly Help Center
---
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Stytlesheets -->
<link rel="stylesheet" type="text/css" href="https://images.plot.ly/assets/css/normalize.css">
<link rel="stylesheet" type="text/css" href="{{site.stylesheet}}">
<!-- Fonts -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="/stylesheets/plotly_icons.css"/>
<!-- Icon -->
<link rel="shortcut icon" href="/images/plotly-ico.png?v=2" type="image/x-icon"/>
<!-- META TAGS -->
{% include _new/_page-components/_seo.html %}
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<meta name="theme-color" content="#447bdc">
</head>
<body>
{% include _new/_page-components/_header-main.html %}
<main class="page --home">
<div class="--wrap-top">
<section class="hero">
<div class="hero-bg">
<img src="https://s3-us-west-1.amazonaws.com/plotly-tutorials/background-images/home-img.jpg" data-depth="0.50" alt=""
class="layer"></div>
<div class="--wrap-inner">
<div class="--welcome layer">
<span class="meta">Welcome to the</span>
<h1>Plotly Help Center</h1>
<p>
Resources for using the Plotly Web App.
</p>
</div>
</div>
</section>
<section class="--documentation-categories">
<div class="--wrap category-buttons">
<ul>
<li>
<a href="/tutorials/">
<div class="category-wrap">
<div class="category-img"><img src="https://images.plot.ly/logo/new-branding/plotly-logomark.png" alt="Plotly logo">
</div>
<div class="category-meta">
<h2>Web App</h2>
<p>Anyone making charts or dashboards online.</p>
</div>
</div>
</a>
</li>
<li>
<a href="https://plot.ly/api/">
<div class="category-wrap">
<div class="category-img"><img src="https://s3-us-west-1.amazonaws.com/plotly-tutorials/background-images/python-logo.png" alt="python logo">
</div>
<div class="category-meta">
<h2>Open Source Graphing Libraries</h2>
<p>Engineers and data scientists using Python, R, Matlab or Javascript.</p>
</div>
</div>
</a>
</li>
<li>
<a href="https://dash.plot.ly/">
<div class="category-wrap">
<div class="category-img"><img src="/images/dash.png" alt="Dash logo">
</div>
<div class="category-meta">
<h2>Dash</h2>
<p>
Dash is ideal for building data visualization apps with highly custom user interfaces in pure Python.
</p>
</div>
</div>
</a>
</li>
<li>
<a href="/database-connectors/">
<div class="category-wrap">
<div class="category-img"><img
src="https://www.mysql.com/common/logos/logo-mysql-170x115.png" alt="mysql logo"></div>
<div class="category-meta">
<h2>Database Connectors</h2>
<p>
Connect your data to the best data-visualiztion tool
</p>
</div>
</div>
</a>
</li>
<li>
<a href="https://community.plot.ly/">
<div class="category-wrap">
<div class="category-img">
<!--<img src="http://i.imgur.com/jCMx2iC.png" alt="">-->
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<path fill="#000000"
d="M17,12V3A1,1 0 0,0 16,2H3A1,1 0 0,0 2,3V17L6,13H16A1,1 0 0,0 17,12M21,6H19V15H6V17A1,1 0 0,0 7,18H18L22,22V7A1,1 0 0,0 21,6Z"/>
</svg>
</div>
<div class="category-meta">
<h2>Community</h2>
<p>
Ask questions, get help, and discuss data viz ideas
</p>
</div>
</div>
</a>
</li>
</ul>
</div>
</section>
</div>
</main>
{% include _new/_page-components/_footer-main.html %}
<script src="https://s3-us-west-1.amazonaws.com/plotly-tutorials/assets/js/libraries.min.js"></script>
<script src="https://s3-us-west-1.amazonaws.com/plotly-tutorials/assets/js/jquery.parallax.js"></script>
<script>
$(document).ready(function () {
// jQuery Selections
var scene = $('.hero-bg');
// Pretty simple huh?
scene.parallax();
});
</script>
<script src="/js/main.js"></script>
</body>
</html>