-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
383 lines (362 loc) · 10.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Parallaxy JS</title>
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<meta name="title" content="Parallaxy.js || Create beautiful parallax" />
<meta
name="description"
content="Create beautiful parallax with attributes or in javascript"
/>
<meta
name="keywords"
content="html, js, css, vuejs, parallax, vue3, parralaxy, animation, image, cool"
/>
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="English" />
<meta name="author" content="yoannchb" />
<link
rel="stylesheet"
href="https://highlightjs.org/static/demo/styles/atom-one-dark-reasonable.css"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/highlight.min.js"></script>
<script>
hljs.initHighlightingOnLoad();
</script>
<script type="text/javascript" src="./dist/parallaxy.js"></script>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<div class="container">
<header>
<a href="https://github.com/yoannchb-pro/Parallaxy">
<h1>Parallaxy.js</h1>
</a>
</header>
<div class="pres">
<h3 class="title">Installation ?</h3>
<h3>NPM</h3>
<pre>
<code class="language-bash">
npm i parallaxy-img
</code>
</pre>
<h3>CDN</h3>
<pre>
<code class="language-html">
https://unpkg.com/parallaxy-img@3.0.3/dist/parallaxy.js
</code>
</pre>
<h3>Import</h3>
<pre>
<code class="language-javascript">
//Importing the class
const Parallaxy = require("parallaxy-img");
import Parallaxy from "parallaxy-img";
//Work with only attributes (vue.js, react, angular...)
import "parallaxy-img";
</code>
</pre>
<h3>Without attributes in JS</h3>
<pre>
<code class="language-javascript">
const parallaxy = new Parallaxy(element, {
'y': {
speed: 0.5, //speed in pourcentage by default it's 0.3
invert: false,
overflow: false
},
'x':{
speed: 0.2, //speed in pourcentage by default it's 0.3
invert: false,
overflow: false
},
axes: 0.5, //Axes of the parallax (by default it's the middle screen)
breakPoint: "(max-width: 600px)", //Will stop parallax on mobile for example (default is false)
scale: 1.5 //Need to be >= 1
});
parallaxy.start(); //Start parallaxy (actived by default)
parallaxy.stop(); //Stop parallaxy
parallaxy.updateConfig(config); //To update the config of the parallax
</code>
</pre>
<h3>Dont forget to center the image into the container</h3>
<pre>
<code class="language-css">
.container{
display: flex;
justify-content: center;
align-items: center;
}
</code>
</pre>
</div>
<div class="pres">
<h3 class="title">Simple example on Y</h3>
<div class="img-container">
<img
src="assets/test.jpg"
alt="Test"
data-prl-y
data-prl-scale="1.8"
data-prl-overflow-y=""
/>
</div>
<!-- CODE -->
<h3>HTML</h3>
<pre>
<code class="language-html">
<img src="..." data-prl-y data-prl-scale="1.8" data-prl-overflow-y>
</code>
</pre>
<!-- END CODE -->
</div>
<div class="pres">
<h3 class="title">Simple example on X</h3>
<div class="img-container">
<img
src="assets/test2.jpg"
alt="Test"
data-prl-x
data-prl-speed-x="0.1"
/>
</div>
<!-- CODE -->
<h3>HTML</h3>
<pre>
<code class="language-html">
<img src="..." data-prl-x data-prl-speed-x="0.1">
</code>
</pre>
</code>
</pre>
<!-- END CODE -->
</div>
<div class="pres">
<h3 class="title">Simple overflow on X for multiples images</h3>
<div class="line-container" id="line-1">
<!-- GENERATED CONTENT -->
</div>
<h3>CSS</h3>
<pre>
<code class="language-css" style="text-align: left">
.line-container {
display: flex;
margin-left: -20rem;
white-space: nowrap;
overflow: hidden;
}
.line-container img {
width: 10rem;
}
</code>
</pre>
<h3>HTML</h3>
<pre>
<code class="language-html">
<img src="assets/vuejs.png" alt="Test" data-prl-x data-prl-overflow-x data-prl-speed-x="0.6" data-prl-scale="1">
</code>
</pre>
</div>
<div class="pres">
<h3 class="title">Simple example on X and Y</h3>
<div class="img-container">
<img
src="assets/test3.jpg"
alt="Test"
data-prl-y
data-prl-overflow-y
data-prl-x
data-prl-overflow-x
data-prl-speed-x="0.2"
/>
</div>
<!-- CODE -->
<h3>HTML</h3>
<pre>
<code class="language-html">
<img src="..." data-prl-y data-prl-overflow-y data-prl-x data-prl-overflow-x data-prl-speed-x="0.2">
</code>
</pre>
<!-- END CODE -->
</div>
<div class="pres">
<h3 class="title">Simple example on X with overflow</h3>
<div class="img-container">
<img
src="assets/test4.jpg"
alt="Test"
data-prl-overflow-x
data-prl-x
data-prl-speed-x="0.5"
/>
</div>
<!-- CODE -->
<h3>HTML</h3>
<pre>
<code class="language-html">
<img src="..." data-prl-overflow-x data-prl-x data-prl-speed-x="0.65">
</code>
</pre>
<!-- END CODE -->
</div>
<div class="pres">
<h3 class="title">Simple example on X inverted direction</h3>
<div class="img-container">
<img
src="assets/test5.jpg"
alt="Test"
data-prl-x
data-prl-inverted-x
data-prl-speed-x="0.2"
/>
</div>
<!-- CODE -->
<h3>HTML</h3>
<pre>
<code class="language-html">
<img src="..." data-prl-x data-prl-inverted-x data-prl-speed-x="0.2">
</code>
</pre>
<!-- END CODE -->
</div>
<div class="pres">
<h3 class="title">Simple example of Parallaxy breakPoint</h3>
<div class="img-container">
<img
src="assets/testb.jpg"
alt="Test"
data-prl-y
data-prl-breakpoint="(max-width: 600px)"
/>
</div>
<!-- CODE -->
<h3>HTML</h3>
<pre>
<code class="language-html">
<img src="..." data-prl-y data-prl-breakpoint="(max-width: 600px)">
</code>
</pre>
<!-- END CODE -->
</div>
<div class="pres">
<h3 class="title">Simple example on Y inverted direction</h3>
<div class="img-container">
<img
src="assets/test6.jpg"
alt="Test"
data-prl-y
data-prl-inverted-y
data-prl-speed-y="0.12"
/>
</div>
<!-- CODE -->
<h3>HTML</h3>
<pre>
<code class="language-html">
<img src="..." data-prl-y data-prl-inverted-y data-prl-speed-y="0.12">
</code>
</pre>
<!-- END CODE -->
</div>
<div class="pres">
<h3 class="title">Simple example of axes</h3>
<div class="img-container">
<img
src="assets/testa.jpg"
alt="Test"
data-prl-y
data-prl-axes="200"
/>
</div>
<!-- CODE -->
<h3>HTML</h3>
<pre>
<code class="language-html">
<img src="..." data-prl-y data-prl-axes="200">
</code>
</pre>
<!-- END CODE -->
</div>
<div class="thx">
<div>
<h2
data-prl-y
data-prl-overflow-y
data-prl-scale="1"
data-prl-speed-y="0.1"
>
T
</h2>
<h2
data-prl-y
data-prl-overflow-y
data-prl-scale="1"
data-prl-speed-y="0.3"
>
h
</h2>
<h2
data-prl-y
data-prl-overflow-y
data-prl-scale="1"
data-prl-speed-y="0.2"
>
a
</h2>
<h2
data-prl-y
data-prl-overflow-y
data-prl-scale="1"
data-prl-speed-y="0.5"
>
n
</h2>
<h2
data-prl-y
data-prl-overflow-y
data-prl-scale="1"
data-prl-speed-y="0.4"
>
k
</h2>
<h2
data-prl-y
data-prl-overflow-y
data-prl-scale="1"
data-prl-speed-y="0.2"
>
s
</h2>
<h2
data-prl-y
data-prl-overflow-y
data-prl-scale="1"
data-prl-speed-y="0.3"
>
!
</h2>
</div>
</div>
</div>
</body>
<script>
document.querySelectorAll("code.language-html").forEach(function (element) {
element.innerHTML = element.innerHTML
.replace(/&/g, "&")
.replace(/</g, "<")
.replace(/>/g, ">")
.replace(/"/g, """)
.replace(/'/g, "'");
});
const l1 = document.querySelector("#line-1");
for (let i = 0; i < 10; ++i) {
l1.innerHTML +=
'<img src="assets/vuejs.png" alt="Test" data-prl-x data-prl-overflow-x data-prl-speed-x="0.6" data-prl-scale="1">';
}
</script>
</html>