-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (39 loc) · 1.54 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Alejandro Díaz">
<meta name="description" content="Una app para grabar la pantalla de nuestra PC.">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="shortcut icon" href="./iconos/icono16x16.png">
<link rel="stylesheet" href="./css/style.css">
<link rel="manifest" href="./manifest.json">
<title>Pip</title>
</head>
<body>
<!-- Fondo de Estrellas móviles -->
<canvas></canvas>
<!-- Ventana de Descarga -->
<div class="downloading">
<div class="loader">
<span style="--i:0"></span>
<span style="--i:1"></span>
<span style="--i:2"></span>
<span style="--i:3"></span>
<span style="--i:4"></span>
<span style="--i:5"></span>
</div>
<div class="textLoader">Descargando Vídeo</div>
</div>
<!-- Botones para grabar y descargar vídeo -->
<a href="#" class="btnDetener"><span>DETENER Y DESCARGAR GRABACION</span></a>
<a href="#" class="btnEmpezar"><span>EMPEZAR A GRABAR</span></a>
<!-- Mensaje de solo disponible para PCs -->
<span class="info">DISPONIBLE SOLO PARA COMPUTARORAS</span>
<h1 id="tiempo">00:00:00</h1>
<script src="./js/animationBody.js"></script>
<script src="./main.js"></script>
</body>
</html>