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 :: how to open link in same tab in chrome 
Css :: removing space between words css 
Css :: how to make scroller show only on hover of container 
Css :: css children selector 
Css :: grid css 
Css :: scss variables 
Css :: how to make the header stay on the top of the page in html 
Css :: css a link style 
Css :: text stroke css 
Css :: stop anchor tag scroll to top of page 
Css :: display sm none 
Css :: how to stretch a font taller css 
Css :: padding-block css 
Css :: css image hover 
Css :: background image repeat css 
Css :: css set strong to normal text 
Css :: how to resize img in css 
Css :: fading bottom image css 
Css :: closing modal on iframe movies still running 
Css :: Hide second occarrence of a css class 
Css :: box-sizing border-box vs content-box css 
Css :: Modify your placeholder 
Css :: list in html css 
Css :: input of type radio css 
Css :: wrap text around circle image css 
Css :: vertical divider between my flexbox 
Css :: crop image in div 
Css :: vsc css autocomplet 
Css :: single product page woocommerce css 
Css :: css button generator 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =