This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (62 loc) · 1.91 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<!-- Meta -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- App -->
<title>Design Responsivo</title>
<meta name="description" content="Interação Humano-Computador - CEUB" />
<!-- highlight.js -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/github-dark.min.css"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script>
<!-- Bootstrap Icons -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css"
/>
<!-- CSS -->
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/example.css" />
<!-- JS -->
<script src="js/index.js" defer></script>
<script src="js/example.js" defer></script>
</head>
<body>
<div id="device">
<div id="screen">
<div id="slide"></div>
<div id="pagination">
<button id="btnPrevious">
<i class="bi bi-chevron-left"></i>
</button>
<span id="page">01</span>
<button id="btnNext">
<i class="bi bi-chevron-right"></i>
</button>
</div>
</div>
</div>
<div id="resize">
<button onclick="Index.resize(event, 'desktop')" class="active">
<i class="bi bi-display-fill"></i>
Desktop
</button>
<button onclick="Index.resize(event, 'tablet')">
<i class="bi bi-tablet-landscape-fill"></i>
Tablet
</button>
<button onclick="Index.resize(event, 'mobile')">
<i class="bi bi-phone-fill"></i>
Celular
</button>
<button onclick="Index.resize(event, 'watch')">
<i class="bi bi-watch"></i>
Relógio
</button>
</div>
</body>
</html>