Search
 
SCRIPT & CODE EXAMPLE
 

CSS

animacion de gota css

#sun {
margin-left: -10px;
margin-top: 6px;
opacity: 0;
width: 60px;
height: 60px;
position: absolute;
left: 45px;
top: 15px;
z-index: 1;
 
animation-name: rotate;
animation-duration: 16000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
 
#sun path {
stroke-width: 0.18;
fill: #9ea1a4;
}
@<a href="https://www.cssblog.es/tags/keyframes/">keyframes</a> rotate {
0% {
transform: rotateZ(0deg);
}
 
100% {
transform: rotateZ(360deg);
}
}
Comment

PREVIOUS NEXT
Code Example
Css :: #shadow-root (open) css 
Css :: css widows 
Css :: button slant right with icon 
Css :: set opacity except one 
Css :: style placeholder 
Css :: html overflow scroll only if needed with exemple 
Css :: order 
Css :: css math functions simplifier 
Css :: list style type none still leaves room for bullet 
Css :: edit default theme in component angular css 
Css :: linux remove latst 3 files 
Css :: Drupal 8 Notice: Trying to get property 
Css :: outline letters in sass 
Css :: how to center topnav bar in html 
Css :: slect all li that not have ul 
Css :: rainvow hover css 
Css :: css disabled option 
Css :: id selector 
Css :: How to Reveal Content on Hover with Expanding Corner Tabs in Divi 
Css :: nuxt css other site 
Css :: what is text-justify in css 
Css :: centralize image css 
Css :: scss font color 
Typescript :: Error: Uncaught (in promise): NullInjectorError: R3InjectorError(AppModule)[HttpClient - HttpClient - HttpClient]: 
Typescript :: ionic 3 alert backdrop dismiss 
Typescript :: ts change date format 
Typescript :: error TS2564: Property 
Typescript :: from list of lists to dataframe 
Typescript :: cannot find module faker or its corresponding type declarations 
Typescript :: angular get current date yyyy-mm-dd 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =