"css3 ripple loop" Code Answer's

You're definitely familiar with the best coding language CSS that developers use to develop their projects and they get all their queries like "css3 ripple loop" answered properly. Developers are finding an appropriate answer about css3 ripple loop related to the CSS coding language. By visiting this online portal developers get answers concerning CSS codes question like css3 ripple loop. Enter your desired code related query in the search bar and get every piece of information about CSS code related question on css3 ripple loop. 

css3 ripple loop

By Drab DragonflyDrab Dragonfly on Feb 02, 2021
.circle {
  height:100px;
  width:100px;
  border-radius:50%;
  background-color:red;
  
  position:relative;
  top:100px;
  left:300px;
  
  -webkit-transition:height .25s ease, width .25s ease;
  transition:height .25s ease, width .25s ease;
  
  -webkit-transform:translate(-50%,-50%);
  transform:translate(-50%,-50%);
}

.circle:hover{
  height:150px;
  width:150px;
}

.circle:before,
.circle:after {
  content:'';
  display:block;
  position:absolute;
  top:0; right:0; bottom:0; left:0;
  border-radius:50%;
  border:1px solid red;
}

.circle:before {
  -webkit-animation: ripple 2s linear infinite;
  animation: ripple 2s linear infinite;
}
.circle:after {
  -webkit-animation: ripple 2s linear 1s infinite;
  animation: ripple 2s linear 1s infinite;
}

.circle:hover:before,
.circle:hover:after {
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes ripple{
  0% {-webkit-transform:scale(1); }
  75% {-webkit-transform:scale(1.75); opacity:1;}
  100% {-webkit-transform:scale(2); opacity:0;}
}

@keyframes ripple{
  0% {transform:scale(1); }
  75% {transform:scale(1.75); opacity:1;}
  100% {transform:scale(2); opacity:0;}
}

Source: stackoverflow.com

Add Comment

0

All those coders who are working on the CSS based application and are stuck on css3 ripple loop can get a collection of related answers to their query. Programmers need to enter their query on css3 ripple loop related to CSS code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about css3 ripple loop for the programmers working on CSS code while coding their module. Coders are also allowed to rectify already present answers of css3 ripple loop while working on the CSS language code. Developers can add up suggestions if they deem fit any other answer relating to "css3 ripple loop". Visit this developer's friendly online web community, CodeProZone, and get your queries like css3 ripple loop resolved professionally and stay updated to the latest CSS updates. 

CSS answers related to "css3 ripple loop"

View All CSS queries

CSS queries related to "css3 ripple loop"

Browse Other Code Languages

CodeProZone