-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (39 loc) · 1.32 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
<!DOCTYPE html>
<html lang="pt-br" class="animated">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@600&family=Lato:wght@300;400&display=swap"
rel="stylesheet">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Product Card</title>
</head>
<body>
<div id="app">
<div id="product-image">
<button id="btn-360" onclick="toggle()">
<img src="./assets/360.svg" alt="clique nesse botão para animar o sofa">
</button>
<button id="btn-close" onclick="toggle()">
<img src="./assets/close.svg" alt="parar de animar o sofa">
</button>
<img id="static" src="./assets/sofa.jpg" alt="sofa">
<img id="animated" src="./assets/sofa.gif" alt="sofa animado">
</div>
<div id="product-details">
<h4>CÓDIGO: 42404</h4>
<h1>Sofá Margot II - Rosé</h1>
<p>R$ 4.000</p>
<button>ADICIONAR À CESTA</button>
</div>
</div>
<script>
function toggle() {
document.documentElement.classList.toggle('animated');
}
</script>
</body>
</html>