-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
122 lines (106 loc) · 4.66 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/weather-icons/2.0.12/css/weather-icons.min.css">
<link rel="stylesheet" href="static/styles.css">
</head>
<body>
<div class="container">
<div id="schedule-panel">
<h2 class="schedule-heading">HORÁRIOS E LOCAIS DAS DISCIPLINAS</h2>
<table class="schedule-table">
<thead>
<tr>
<th>Horário</th>
<th>Nome da Disciplina</th>
<th>Local</th>
<th>Responsável</th>
</tr>
</thead>
<tbody>
<tr>
<td>8:00 - 9:30</td>
<td>Matemática</td>
<td>Prof. Silva</td>
<td>Sala 101</td>
</tr>
<tr>
<td>10:00 - 11:30</td>
<td>Química</td>
<td>Prof. Oliveira</td>
<td>Sala 202</td>
</tr>
<tr>
<td>13:00 - 14:30</td>
<td>Língua Portuguesa</td>
<td>Prof. Pardal</td>
<td>Sala 209</td>
</tbody>
</table>
</div>
<!-- Nova coluna com slider de anúncios -->
<div id="ads-column">
<h2 class="schedule-heading">NOTÍCIAS</h2>
<div id="ads-slider-container">
<div id="ads-slider">
<!-- Substitua os URLs das imagens pelos seus próprios anúncios -->
<div class="ad"><img src="static/images/ad1.jpg" alt="Anúncio 1"></div>
<div class="ad"><img src="static/images/ad2.jpg" alt="Anúncio 2"></div>
<div class="ad"><img src="static/images/ad3.jpg" alt="Anúncio 3"></div>
</div>
</div>
</div>
</div>
<!-- Rodapé -->
<div id="footer">
<!-- Logotipo -->
<img src="static/images/seu-logotipo.png" alt="Logotipo">
<!-- Texto do rodapé -->
<p>Desenvolvido pela CTIC Campus Tubarão</p>
<!-- Previsão do Tempo e Hora Certa -->
<div id="weather-container">
<span class="time-weather">
<a class="weather widget">
<span class="weather-info">
<span class="temp" id="temperature">29°C</span>
</span>
<i class="weather-icon" id="weather-icon"></i>
</a>
</span>
<span class="time" id="current-time"></span> <!-- Adicione a hora certa aqui -->
</div>
<script>
// Adiciona a funcionalidade de slider automático
const slider = document.getElementById('ads-slider');
let currentIndex = 0;
function showNextSlide() {
currentIndex = (currentIndex + 1) % slider.children.length;
const translateValue = -currentIndex * 100;
slider.style.transform = `translateY(${translateValue}%)`;
}
setInterval(showNextSlide, 30000); // Altera o slide a cada 3 segundos
// Função para obter dados de temperatura e hora do backend
function getWeatherAndTime() {
// Substitua a URL abaixo pela URL do seu backend que fornece os dados
const backendURL = "http://127.0.0.1:5053/api/owm";
// Faça uma requisição para obter os dados do backend
fetch(backendURL)
.then(response => response.json())
.then(data => {
// Atualize os elementos HTML com os dados obtidos
document.getElementById('temperature').innerText = `${data.temperature}º`;
document.getElementById('weather-icon').className = `weather-icon wi ${data.forecast['icon']}`;
document.getElementById('current-time').innerText = data.time;
})
.catch(error => console.error('Erro ao obter dados do backend:', error));
}
// Chame a função inicialmente para exibir os dados
getWeatherAndTime();
// Atualize os dados a cada 5 minutos (ou conforme necessário)
setInterval(getWeatherAndTime, 20000); // 300000 milissegundos = 5 minutos
</script>
<!-- Seu HTML existente aqui -->
</body>
</html>