-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (90 loc) · 4.21 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Textando - Transforme seu Texto</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="imgs/lapis.png">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/eee70234f3.js" crossorigin="anonymous"></script>
</head>
<body>
<section class="home">
<div class="titulo">
<div class="rot-titulo">
<h1 data-title="Textando">Textando</h1>
</div>
<h2>Transforme seu texto</h2>
</div>
<!-- <div class="img">
<center>
<img src="imgs/lapis.png">
</center>
</div> -->
</section>
<form>
<center>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="background: #9932CC">
<i class="fas fa-cog"></i>
Funções
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
<button class="dropdown-item" type="button" id="properties">Propriedades</button>
<button class="dropdown-item" type="button" id="cutSpaces">Retirar Espaços</button>
<button class="dropdown-item" type="button" id="delText">Deletar Texto</button>
<button class="dropdown-item" type="button" id="mesclarText">Mesclar Números</button>
<button class="dropdown-item" type="button" id="upper">Tudo Maiúsculo</button>
<button class="dropdown-item" type="button" id="lower">Tudo Minúsculo</button>
<div class="dropdown-divider"></div>
<button class="dropdown-item" type="button" id="cifra"><i class="fas fa-lock"></i> Cifra de César</button>
<input type="number" class="form-control" id="chave" max="25" min="-25" placeholder="Chave">
</div>
</div>
</center>
<center>
<div class="props">
<ul class="list-group">
<li class="list-group-item d-flex justify-content-between align-items-center">
N° de Caracteres
<span class="badge badge-primary badge-pill" style="background: #9932CC" id="numChar">0</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
N° de Espaços
<span class="badge badge-primary badge-pill" style="background: #9932CC" id="numSpaces">0</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
N° de Palavras
<span class="badge badge-primary badge-pill" style="background: #9932CC" id="numWords">0</span>
</li>
</ul>
</div>
</center>
<center>
<div class="text-area">
<textarea id="textVal" placeholder="Digite ou cole seu texto aqui..."></textarea>
</div>
</center>
<center>
<div class="copiar">
<button type="button" class="btn btn-primary" style="background: #9932CC; border: none;" id="copy">
<i class="far fa-copy"></i>
Copiar
</button>
<p id="msg-copy">Copiado!</p>
</div>
</center>
</form>
<a href="#" id="topBtn"><i class="fas fa-arrow-up"></i></a>
<div class="footer">
<p>Feito com <span><i class="fas fa-heart"></i></span> por Rivaldo</p>
<p style="font-size: 28px;"><a href="https://github.com/pedrorivald"><i class="fab fa-github"></i></a></p>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>