Search
 
SCRIPT & CODE EXAMPLE
 

CSS

@keyframes

p {
  animation-duration: 25s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%;
  }
  75% {
    font-size: 300%;
    margin-left: 25%;
    width: 150%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}
Comment

css keyframes

@keyframes mymove {
  from {top: 0px;}
  to {top: 200px;}
}
Comment

keyframe in css

@keyframes mymove {
  0% {top: 0px;}
  50% {top: 50px;}
  75% {top: 40px;}
  100%{top: 0px;}
}
Comment

css keyframes

 .progress-bar{
   background-color: #fff;
   height: 4px;
   width: 100%;
   animation: grow 3s linear infinite;
   transform-origin: left;

 }
 @keyframes grow{
   0%{
      transform: scaleX(0);
   }
 }
Comment

keyframes

/* @keyframes duration | easing-function | delay |
iteration-count | direction | fill-mode | play-state | name */
animation: 3s ease-in 1s 2 reverse both paused slidein;
Comment

PREVIOUS NEXT
Code Example
Css :: css transition ease 
Css :: css vendor prefixes 
Css :: how to center horizontally and vertically block div 
Css :: how to put link at bottom of page html 
Css :: inline block text align top 
Css :: css text highlight 
Css :: Correct border property to add ROUNDED borders to the elements 
Css :: overlay color on image css 
Css :: type selector css 
Css :: css outline offset 
Css :: css all clases which start with col- 
Css :: webkit-line-clamp: 2; 
Css :: css grid 1 row 2 columns 
Css :: linear gradient not covering entire page 
Css :: overflow-y scroll not working in chrome 
Css :: padding-block css 
Css :: add expanding underline on page load css 
Css :: pagination in css 
Css :: scss generate random color 
Css :: css break after 2 words 
Css :: check ssh port 
Css :: centering using flexbox 
Css :: scss maps´ 
Css :: git font 
Css :: create circle in css 
Css :: font stack css 
Css :: progress bar bootstrap border 
Css :: spinner in html css react 
Css :: background color in hex css 
Css :: how to style the button 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =