1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/view/index_loading.html
2022-09-19 13:54:12 -03:00

35 lines
806 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Loading...</title>
<style>
div {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
@keyframes pulse {
0% {
transform: scale(0.95);
}
70% {
transform: scale(1);
}
100% {
transform: scale(0.95);
}
}
img{
animation: pulse 2s infinite;
}
</style>
</head>
<body>
<div>
<img src="../videos/userPhoto/logo.png" alt="Logo" class="img-responsive ">
</div>
</body>
</html>