Search
 
SCRIPT & CODE EXAMPLE
 

CSS

loading animation css

<style> 
div {
  width: 100px;
  height: 100px;
  background-color: red;
  position: relative;
  animation-name: example;
  animation-duration: 0.01s;
  animation-iteration-count: infinite;
}

@keyframes example {
  0%   {background-color:red; left:0px; top:0px;}
  25%  {background-color:yellow; left:200px; top:0px;}
  50%  {background-color:blue; left:200px; top:200px;}
  75%  {background-color:green; left:0px; top:200px;}
  100% {background-color:red; left:0px; top:0px;}
}
</style>
Comment

PREVIOUS NEXT
Code Example
Css :: facebook box-shadow css 
Css :: vsc css autocomplet 
Css :: css change multiple classes 
Css :: adding a perfect responsive background image 
Css :: how to style the button 
Css :: css font color 
Css :: css hover rounded corners 
Css :: code runner not taking input 
Css :: button material ui 
Css :: scss mixin 
Css :: css focus 
Css :: display flex align last item to left 
Css :: mat slide toggle iverted 
Css :: css 2 div cote à cote 
Css :: waves css 
Css :: css stop text wrapping 
Css :: how use befor after for image 
Css :: red color hex 
Css :: css italics 
Css :: transition css react 
Css :: media quries 
Css :: registration form in tailwind css 
Css :: css button 
Css :: affect top div opacity without affecting childrne 
Css :: indexes vs foreign key 
Css :: bootstrap grid only css npm install 
Css :: css font leading 
Css :: restrict css to apply on div 
Css :: css pagedList 
Css :: datepicker disable future date odoo 
ADD CONTENT
Topic
Content
Source link
Name
6+4 =