-
Notifications
You must be signed in to change notification settings - Fork 0
/
redireccion.html
56 lines (47 loc) · 1.33 KB
/
redireccion.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
<!DOCTYPE html>
<html>
<head>
<META HTTP-EQUIV="REFRESH" CONTENT="0;URL=#">
<title>Cargando...</title>
<style>
@keyframes rotate {from {transform: rotate(0deg);}
to {transform: rotate(360deg);}}
@-webkit-keyframes rotate {from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}}
.imgr{
-webkit-animation: 3s rotate linear infinite;
animation: 3s rotate linear infinite;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
body{
background-color: #1abc9c;
overflow: hidden;
}
.logo{
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 50%;
transform: translate(50%, -50%);
width: 490px;
height: 335.983px;
}
</style>
</head>
<body>
<!--div style="width:800px;">
<div class="logo" style="/*width:300px;*/ float:left;">
<img src="./assets/logo perfil sin fondo.png" alt="" class="imgr">
</div>
<div style="/*width:300px;*/ float:right; display: flex;
justify-content: center;">
<h1>Cargando...</h1>
</div>
</div-->
<div class="logo" style="width: 50%;">
<img src="./assets/logo perfil sin fondo.png" class="imgr">
</div>
</body>
</html>