-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
397 lines (349 loc) · 10.7 KB
/
index.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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery Rellax Plugin Demo and Documentation</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.js"></script>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto+Slab:700">
<link rel="stylesheet" type="text/css" href="assets/css/bully.css">
<link rel="stylesheet" type="text/css" href="assets/css/prism.css">
<link rel="stylesheet" type="text/css" href="assets/css/slick.css">
<link rel="stylesheet" type="text/css" href="assets/css/slick-theme.css">
<style>
* {
box-sizing: border-box;
margin: 0;
}
html {
font-size: 112.5%;
line-height: 1.6;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
h1, .h1, h2, h3 {
font-family: 'Roboto Slab', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
h1, .h1 {
font-size: 3em;
}
h2 {
font-size: 2em;
}
h3 {
font-size: 1.5em;
}
h2, h3 {
margin-top: 2em;
margin-bottom: 1em;
}
h2:first-child,
h3:first-child {
margin-top: 1em;
}
pre {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
p {
margin-top: 1em;
margin-bottom: 1em;
}
header {
position: relative;
height: 100vh;
}
section > :last-child {
margin-bottom: 2em;
}
section {
position: relative;
margin-left: auto;
margin-right: auto;
overflow: hidden;
background: white;
padding-left: 2em;
padding-right: 2em;
}
table {
width: 100%;
border-spacing: 0;
border-collapse: collapse;
margin-left: -0.5em;
margin-right: -0.5em;
margin-bottom: 2em;
}
th, td {
padding: 0.25em 0.5em;
text-align: left;
border: 1px solid #eee;
}
[data-rellax],
[data-rellax-container] {
width: 100%;
height: 100%;
}
[data-rellax] {
will-change: transform, opacity;
backface-visibility: hidden;
}
[data-rellax-container] {
overflow: hidden;
}
[data-rellax-container] [data-rellax] {
transition: opacity .3s ease-out;
opacity: 0;
}
.js [data-rellax-container] [data-rellax] {
opacity: 1;
}
.rellax-element.rellax-hidden {
pointer-events: none;
visibility: hidden;
opacity: 0;
}
.header-content-wrap {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
color: white;
padding-left: 2em;
padding-right: 2em;
}
.header-content {
text-align: center;
}
.content-wrap {
justify-content: flex-start;
align-content: center;
max-width: 44em;
margin-left: auto;
margin-right: auto;
}
.c-button {
display: inline-block;
padding: 0.5em 1em;
border: 1px solid currentColor;
border-radius: 0.25em;
background: none;
font: inherit;
text-decoration: none;
color: inherit;
}
.c-button + .c-button {
margin-left: 0.5em;
}
.c-button--primary {
background: white;
color: black;
}
[data-rellax] {
transform: translate3d(0,0,0);
will-change: transform;
background-color: #444;
}
.fill {
width: 100%;
height: 100%;
object-fit: cover;
}
.js-slider img {
height: 100%;
object-fit: cover;
}
.color-dark {
color: #444;
}
.rellax-hidden {
opacity: 0;
}
.slick-list,
.slick-track {
height: 100%;
}
#map:after {
content: "";
position: absolute;
top: 40%;
left: 50%;
width: 1em;
height: 1em;
margin-top: -0.5em;
margin-left: -0.5em;
border: 0.5em solid black;
border-radius: 50% 50% 0 50%;
transform: rotate(45deg);
}
</style>
</head>
<body>
<script type="text/javascript">document.getElementsByTagName('body')[0].className ='js'</script>
<header data-bully>
<div data-rellax-container>
<div class="fill" data-rellax>
<img class="fill" src="assets/photo3.jpeg" alt="">
</div>
</div>
<div class="header-content-wrap content-wrap darker">
<h1>Rellax</h1>
<p>A lightweight jQuery plugin that allows you to add scroll dependent parallax effects to your website with ease.</p>
<a class="c-button c-button--primary" href="jquery.rellax.min.js" download>Download</button>
<a class="c-button" href="https://github.com/pixelgrade/rellax">View on github</a>
</div>
</header>
<section>
<div class="content-wrap">
<h2>What is it?</h2>
<p>The script was supposed to be used to give a sense of depth for the backgrounds we were using on some hero areas. But in it’s current state the plugin works both for foreground and background elements.</p>
<p>It is pretty much markup-agnostic to say so and it covers most of the cases we have encountered in our experiences in developing parallax websites. That being said, you can use it with images, sliders and even videos.</p>
</div>
</section>
<header data-bully>
<div data-rellax data-rellax-container>
<video class="fill" data-rellax autoplay loop muted>
<source src="assets/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="header-content-wrap">
<div>
<span class="h1">Video Background Example</span>
</div>
</div>
</header>
<header data-bully>
<div data-rellax data-rellax-container>
<div id="map" class="fill" data-rellax></div>
</div>
<div class="header-content-wrap color-dark">
<div>
<span class="h1">Google Map Background Example</span>
</div>
</div>
</header>
<header data-bully>
<div data-rellax data-rellax-container>
<div data-rellax class="fill js-slider">
<img class="fill" src="assets/photo1.jpeg" alt="">
<img class="fill" src="assets/photo2.jpeg" alt="">
<img class="fill" src="assets/photo3.jpeg" alt="">
<img class="fill" src="assets/photo4.jpeg" alt="">
</div>
</div>
<div class="header-content-wrap" style="pointer-events: none">
<div>
<span class="h1">Slider Background Example</span>
</div>
</div>
</header>
<section>
<div class="content-wrap">
<h2>Installation</h2>
<p>Include jQuery and the Rellax plugin on your page</p>
<pre><code class="language-html"><script src=”jquery.min.js”></script>
<script src=”jquery.rellax.min.js></script></code></pre>
<h3>Use data attributes to get things moving</h3>
<pre><code class="language-html"><img data-rellax src="path/to/my-image.jpg"></code></pre>
<p>The <code class="language-">data-rellax-container</code> attirbute tells the plugin this is just a wrapper in order to keep child elements from overflowing. These elements won’t be affected by <code class="language-">data-rellax-amount</code> and you still have to add <code class="language-">data-rellax</code> to them in order to work.</p>
<p>Usage:</p>
<pre><code class="language-html"><div data-rellax data-rellax-container>
<img data-rellax src="path/to/my-image.jpg">
</div></code></pre>
<h3>Use JavaScript to run the plugin</h3>
<p>If you don't fancy data attributes you can always use the standard way of running the plugin</p>
<pre><code class="language-js">$('.my-selector').rellax(options);</code></pre>
<h3>Options</h3>
<table>
<tr>
<th>name</th>
<th>default</th>
<th>data attribute</th>
</tr>
<tr>
<td>amount</td>
<td>0.5</td>
<td>data-rellax-amount</td>
</tr>
<tr>
<td>bleed</td>
<td>0</td>
<td>data-rellax-bleed</td>
</tr>
<tr>
<td>container</td>
<td>"[data-rellax-container]"</td>
<td>—</td>
</tr>
</table>
<p><strong>amount</strong></p>
<p>This option tells the plugin how far in the background you want the element to appear. If set to 0 the plugin will ignore this element keeping it on the same plane with the rest of the content (same behavior as setting position: static to the element). If set to 1 the element will seem to be position very far back and it’s position relative to the screen won’t be affected by the scroll position (same behavior as setting position: fixed to the element).</p>
<p><strong>bleed</strong></p>
<p>When using a container to keep parallax elements from overflowing their parent some visual artefacts which you may identify them as blurry edges. Increase the value of this option to get rid of those. Most of the times 20 should do.</p>
<p><strong>container</strong></p>
<p>A custom selector to target the parallax wrappers if data-attributes dont suit you</p>
<h2>A comprehensive example</h2>
<pre><code class="language-html"><div class="rellax" data-rellax-container>
<img class="rellax" src="path/to/my-image.jpg">
</div>
<div class="rellax-fixed rellax-wrapper">
<img class="rellax-fixed" src="path/to/my-image.jpg">
</div>
<span data-rellax data-rellax-amount="0.75">Cool!</span></code></pre>
<pre><code class="language-html"><script>
// overwrite default amount value for all elements
$.fn.rellax.defaults.amount = 0.25;
$(document).ready(function() {
// use custom selector to target elements
// all elements with data-rellax will still be initialized with the new defaults
$('.rellax').rellax();
// use different settings for just a set of elements
$('.rellax-fixed').rellax({
amount: 1,
container: '.rellax-wrapper'
});
});
</script></code></pre>
</div>
</section>
<header data-bully>
<div data-rellax data-rellax-container>
<img class="fill" data-rellax src="assets/photo1.jpeg" alt="">
</div>
<div class="header-content-wrap"></div>
</header>
<header data-bully>
<div data-rellax data-rellax-container>
<img class="fill" data-rellax src="assets/photo2.jpeg" alt="">
</div>
<div class="header-content-wrap darker"></div>
</header>
<script src="assets/js/prism.js"></script>
<script src="assets/js/slick.js"></script>
<script src="http://maps.google.com/maps/api/js"></script>
<script src="assets/js/gmaps.js"></script>
<script src="jquery.rellax.js"></script>
<script src="jquery.bully.js"></script>
<script>
$( '[data-rellax]' ).rellax();
// $( 'header' ).each( function( i, obj ) {
// var $header = $( obj );
// $header.height( $header.outerHeight() );
// });
$( '.js-slider' ).slick();
$('[data-bully]').bully();
$( window ).on( 'load', function() {
new GMaps({
div: '#map',
lat: -12.043333,
lng: -77.028333
});
});
</script>
</body>
</html>