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
159 lines (142 loc) · 6.59 KB
/
Copy pathindex.html
File metadata and controls
159 lines (142 loc) · 6.59 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
151
152
153
154
155
156
157
158
159
---
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" 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="//plot.ineffable.co//images/frontend/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="//plot.ineffable.co/images/plotly-logo.png" alt="">
</div>
<div class="category-meta">
<h2>Web Apps</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="//plot.ineffable.co/images/python-logo.png" alt="">
</div>
<div class="category-meta">
<h2>API Clients</h2>
<p>Engineers and data scientists using Python, R, Matlab or Javascript.</p>
</div>
</div>
</a>
</li>
<li>
<a href="/excel/">
<div class="category-wrap">
<div class="category-img"><img src="//plot.ineffable.co/images/excel-logo.png" alt="">
</div>
<div class="category-meta">
<h2>Plotly & Excel</h2>
<p>
Upload Excel sheets to plotly to build best-practice charts, reports and
dashboards.
</p>
</div>
</div>
</a>
</li>
<li>
<a href="//plot.ly/dashboards/">
<div class="category-wrap">
<div class="category-img"><img src="http://i.imgur.com/jCMx2iC.png" alt=""></div>
<div class="category-meta">
<h2>Dashboards</h2>
<p>
Create static or live-updating dashboards from your Plotly charts
</p>
</div>
</div>
</a>
</li>
<li>
<a href="#">
<div class="category-wrap">
<div class="category-img"><img
src="https://www.mysql.com/common/logos/logo-mysql-170x115.png" alt=""></div>
<div class="category-meta">
<h2>Database Connectors</h2>
<p>
Coming soon!
</p>
</div>
</div>
</a>
</li>
<li>
<a href="http://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>
</body>
</html>