Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css animated cross mark

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}
.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 29;
  stroke-dashoffset: 29;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142;
  }
}
Comment

PREVIOUS NEXT
Code Example
Css :: footer for front end developer 
Css :: dxxxxxxx 
Css :: grippy css 
Css :: hide scrolbar 
Css :: /* */ 
Css :: target element id css 
Css :: Understanding ' sign in css selector 
Css :: capitalize only first letter css 
Css :: i tag in html , <i tag in html 
Css :: easyui datagrid header color 
Css :: uikit height 100% 
Css :: insert millions of records mongodb 
Css :: css chess pieces 
Css :: how to make a width infinite and hidden using css 
Css :: simple button css codepen 
Css :: what does color dodge do 
Css :: Fluid typography for Safari 
Css :: css loading spinner with text 
Css :: var units = "years"; var davidAge = 65; var johnAge = 40; var ageDifference = davidAge - johnAge; alert("The age difference is " + ageDifference + " " + units); 
Css :: how to stop a blue color on touch in css 
Css :: style placeholder 
Css :: css math functions simplifier 
Css :: time display in css 
Css :: nth master 
Css :: alternative for lodash omit in javascript 
Css :: css trigger animation 
Css :: width height samsung note 20 screen 
Css :: laravel public css not found 
Css :: Placeholders border shadow outline 
Css :: css media query between two width 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =