Search
 
SCRIPT & CODE EXAMPLE
 

CSS

three dots animation

.one {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.0s;
    animation: dot 1.3s infinite;
    animation-delay: 0.0s;
}

.two {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.2s;
    animation: dot 1.3s infinite;
    animation-delay: 0.2s;
}

.three {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.3s;
    animation: dot 1.3s infinite;
    animation-delay: 0.3s;
}

@-webkit-keyframes dot {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes dot {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
Comment

PREVIOUS NEXT
Code Example
Css :: Responsive Web Design - Media Queries 
Css :: set another font in css 
Css :: vim unset number 
Css :: git apagar branch remoto 
Css :: html css practice projects 
Css :: button style css 
Css :: @media css 
Css :: how change the text position 
Css :: how to use the display property 
Css :: css selector id class 
Css :: bootstrap-navbar-brand 
Css :: css pseudo-elements 
Css :: why grepper not always shows 
Css :: grandezza caratteri css 
Css :: inline-block column appear higher than others 
Css :: wordpress dashboard css broken 
Css :: how to remove underline from link 
Css :: delete files with help of .getignore 
Css :: step 54 freecodecamp rwd 
Css :: width cross browser 
Css :: hoe maak je alleen het opsommingsteken wit in css 
Css :: wow animation run in multiple times at once 
Css :: text decoration too long 
Css :: Styles for Facebook Feed Smash Balloons 
Css :: how to add selector to another selector in css 
Css :: sintask css 
Css :: css psedou content data 
Css :: The Sass .sass file is visually different from .scss file, e.g. Example.scss - sassy css is the new syntax as of Sass 3 
Css :: target only mozilla css 
Css :: why does my css take time to load 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =