Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css button click animation

.button {
  position: relative;
  background-color: #04AA6D;
  border: none;
  font-size: 28px;
  color: #FFFFFF;
  padding: 20px;
  width: 200px;
  text-align: center;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}

.button:after {
  content: "";
  background: #90EE90;
  display: block;
  position: absolute;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px!important;
  margin-top: -120%;
  opacity: 0;
  transition: all 0.8s
}

.button:active:after {
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: 0s
}
Comment

PREVIOUS NEXT
Code Example
Css :: pacSelectFirst( submit button 
Css :: exact media screen 
Css :: css backdrop filter grayscale 
Css :: button not aligning right css 
Css :: css before cant change the size 
Css :: table inside table not matching borders 
Css :: css os dependent font family 
Css :: find_element_by_css_selector link 
Css :: @keyframes opact 
Css :: felx-wrap css 
Css :: css chess pieces 
Css :: howto stop the screen from zooming in when I click on input tag on mible 
Css :: css infinite horizontal scroll with keyframe? 
Css :: clippy css 
Css :: const Schema 
Css :: how can you make us stop our image from the web css html 
Css :: Table Print Cut off right side 
Css :: frontend to backend fetching 
Css :: #shadow-root (open) css 
Css :: prevenrt div with height 100% from growing up 
Css :: multiple nth child css 
Css :: alternate table row color css 
Css :: disable safari form formatting 
Css :: CSS hide first li separator on each line - responsive horizontal css menu 
Css :: how to change margin radius in css 
Css :: list on click in css 
Css :: css animation left 
Css :: css fr meaning 
Css :: practice html and css 
Css :: scss how to declare variable for multiple files 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =