-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (81 loc) · 3.21 KB
/
index.html
File metadata and controls
99 lines (81 loc) · 3.21 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
<!doctype html>
<html class="no-js" lang="en, es">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Infinite Carousel | Orcaslide</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="./css/Main.css">
<link href="https://fonts.googleapis.com/css?family=Staatliches" rel="stylesheet">
</head>
<body class="CoverBackground">
<main class="Cover">
<div class="TitleContainer">
<h1 class="Title">
Infinite Carousel
</h1>
</div>
<section class="Dialer">
<a class="Button" href="./fluid.html">
Fluid
</a>
<span class="Dialer__Description">
Movimiento "líquido" Horizontal.
</span>
<a class="Button" href="./card-by-card.html">
Card by Card
</a>
<span class="Dialer__Description">
Translado horizontal item por item.
</span>
<a class="Button" href="./viewbox-by-viewbox.html">
ViewBox by ViewBox
</a>
<span class="Dialer__Description">
Translado horizontal del grupo visible de elementos en pantalla.
</span>
</section class="Dialers">
<section class="WrapperText">
<p>
Este desarrollo de Infinite Carousel cuenta con dos variantes en su funcionalidad.
</p>
<h2>
Características:
</h2>
<h3>
Mobile
</h3>
<ul>
<li>
Swipe infinito en Mobile
</li>
<li>
Máximo de 15 elementos
</li>
<li>
Active Element Ready. Resaltado de elemento activo que indica Card seleccionado. (Característica para trabajar en conjunto con Sliders)
</li>
</ul>
<h3>
Desktop
</h3>
<ul>
<li>
Scroll Horizontal infinito en Desktop
</li>
<li>
Máximo de 15 elementos
</li>
<li>
Al no cumplir con el minimo de elementos equivalentes al ancho del ViewBox los Card se mantendrán centrados y la funcionalidad de Carousel no se aplicará.
</li>
<li>
Active Element Ready. Resaltado de elemento activo que indica Card seleccionado. (Característica para trabajar en conjunto con Sliders)
</li>
</ul>
</section>
</main>
<script type="text/javascript" src="./js/Carousel-dist-main.js"></script>
</body>
</html>