Amigos hice un layout para cuando entre a tu cuenta vea una notificacion de del windows 98 antigua como esto
<!-- Hecho por @Toyo -->
<style>
body:before {
content: " ";
height: 100vh;
width: 100vw;
display: block;
position: fixed;
top: 50%;
left: 50%;
z-index: 100;
background-image: url(https://media2.giphy.com/media/v1.Y2lkPTc5MGI3NjExM2treWNsczZ4ZmQxaDJhYjJidDFkOHd1emE5b3M5bWdpcjA2dG1lcCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/RHEqKwRZDwFKE/giphy.gif);
background-size: 40%;
background-repeat: no-repeat;
background-position: center;
animation: fadeOut 1s ease 2s 1 normal forwards;
pointer-events: none;
transform: translate(-50%, -50%);
}
@keyframes fadeOut {
0% { opacity: 1; }
75% { opacity: 1; }
100% { opacity: 0; }
}
</style>
Comments
Displaying 0 of 0 comments ( View all | Add Comment )