-
Notifications
You must be signed in to change notification settings - Fork 1
/
mapa_index.php
82 lines (59 loc) · 2.08 KB
/
mapa_index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Balada Tipográfica</title>
<link rel="stylesheet" href="css/geral.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/saxxtext.min.css" />
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="saxxtext.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
</head>
<?php
$wordsNovo = file_get_contents('words.txt');
$coimbra= file_get_contents('coimbra.txt')
?>
<body>
<div id="intro">
<div id="mapid"></div>
<div id="pal">
<div id="divisao">
</div>
</div>
</div>
<div class="nav-menu">
<div id="burger-wrap">
<a class="burger"><span></span></a>
</div>
<div class="menu-list">
<ul>
<li><a href="mapa_index.php">Mapa</a></li>
<li><a href="projeto.html">Sobre</a></li>
<li><a href="equipa.html">A Equipa</a></li>
<li><a href="palavra.html">Inserir Palavra</a></li>
</ul>
</div>
</div>
<script src="comp_tipo.js"></script>
<script>
var novaspalavras=<?php echo $wordsNovo ?>;
var coimbra= <?php echo $coimbra ?>;
compPalavras(novaspalavras, coimbra);
</script>
<script src="menu.js"></script>
<script>
//var fonts = [ 'Verdana', 'Arial', 'montserrat', 'Courier New', 'roboto','Helvetica','Trebuchet MS','Georgia'];
var fonts_stretch= ['50%', '62.5%', '75%', '85.5%', '100%', '125%']
var currentFont = 0;
function changeFont() {
//document.body.style.fontFamily = fonts[currentFont++ % fonts.length]
//document.getElementById("divisao").style.fontStretch = fonts_stretch[currentFont++ % fonts_stretch.length]
}
//setInterval(changeFont, 3000);
</script>
</body>
</html>