-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (29 loc) · 882 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./style.css" />
<title>Carousel in Javascript</title>
</head>
<body>
<div class="carousel">
<div data-js="carousel__item" class="carousel__item carousel__item--visible">
<img src="./img/1.jpg" />
</div>
<div data-js="carousel__item" class="carousel__item">
<img src="./img/2.jpg" />
</div>
<div data-js="carousel__item" class="carousel__item">
<img src="./img/3.jpg" />
</div>
<div class="carousel__actions">
<button data-js="carousel__button--prev" aria-label="Slide anterior">
< </button>
<button data-js="carousel__button--next" aria-label="Próximo slide">
>
</button>
</div>
</div>
<script src="./app.js"></script>
</body>
</html>