Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css hide after seconds

html, body {
    height:100%;
    width:100%;
    margin:0;
    padding:0;
}
#hideMe {
    -moz-animation: cssAnimation 0s ease-in 5s forwards;
    /* Firefox */
    -webkit-animation: cssAnimation 0s ease-in 5s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimation 0s ease-in 5s forwards;
    /* Opera */
    animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes cssAnimation {
    to {
        width:0;
        height:0;
        overflow:hidden;
    }
}
@-webkit-keyframes cssAnimation {
    to {
        width:0;
        height:0;
        visibility:hidden;
    }
}
Comment

PREVIOUS NEXT
Code Example
Css :: how to customize placeholder css 
Css :: whats display block 
Css :: move cursor 
Css :: td min-height not working 
Css :: css nested class 
Css :: nth-child css 
Css :: how to add images on images css 
Css :: css custom easing 
Css :: add logo html css 
Css :: text-shadow 
Css :: how to give css only to a paticular image 
Css :: align item center flex 
Css :: cd cover dimensions 
Css :: convert css in scss 
Css :: tailwind css symfony 
Css :: webpack css not loading 
Css :: target element id css 
Css :: light grey border css 
Css :: mathjax beautiful math in all browsers 
Css :: Enhancer for Youtube DeepDark Theme 
Css :: css list style image font awesome 
Css :: text decoration too long 
Css :: bootstrap 
Css :: transform: scale time anpassen 
Css :: Create 2 separate CSS rules for the code below: 
Css :: grouping selector in css 
Css :: css text shadow effect 
Css :: css using border top border bottom to create a hamburger icon 
Css :: nth master 
Css :: uytutyu 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =