Search
 
SCRIPT & CODE EXAMPLE
 

CSS

pure css spinner

#loading {
  display: inline-block;
    width: 150px;
    height: 150px;
    border: 5px solid rgb(26 108 97 / 54%);
    border-radius: 50%;
    border-top-color: #fff0;
    animation: spin 1s ease-in infinite; /*use cubic-bezier(0,0,0,0) for smooth spin*/
    -webkit-animation: spin 1s ease-in-out infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    box-sizing: border-box;
    translate: -50% -50%;
}

@keyframes spin {to {-webkit-transform: rotate(360deg);}}
@-webkit-keyframes spin {to {-webkit-transform: rotate(360deg);}}
Comment

pure css spinner

rotationBack
Comment

PREVIOUS NEXT
Code Example
Css :: list-style-type flex 
Css :: siteorigin hide row 
Css :: css chess pieces 
Css :: Tooltip animation effect 
Css :: cons;0 ccs 
Css :: button background position left to right hover css 
Css :: learn golang in a day 
Css :: javascript select element that does not have attribute 
Css :: how to create a square element with css with dynamic width 
Css :: bootstrap 
Css :: Fluid typography for Safari 
Css :: You tried to parse SCSS with the standard CSS parser; try again with the postcss-scss parser 
Css :: Table Print Cut off right side 
Css :: function opens a new css section tag 
Css :: faire des colonnesdef etexte css 
Css :: hide the default tooltip behaviour from safari 
Css :: matrix multiplication markdown 
Css :: subtracting css 
Css :: css div background image loading 
Css :: calmp css 
Css :: chrome extension detect copy action 
Css :: How to change textsize recta native 
Css :: click a list html css 
Css :: mcq on advanced css 
Css :: tslib.es6 
Css :: fullcalendar react 
Css :: tailwindcss link tag 
Css :: enlarge icon when hover 
Typescript :: find total commits in git 
Typescript :: how check is file exist linux 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =