Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how to add grow effect animation button in css

.button-grow {
  color: #65b5f6;
  background-color: transparent;
  border: 1px solid #65b5f6;
  border-radius: 4px;
  padding: 0 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.button-grow:hover {
  transform: scale(1.1);
}
Source by www.30secondsofcode.org #
 
PREVIOUS NEXT
Tagged: #add #grow #effect #animation #button #css
ADD COMMENT
Topic
Name
6+4 =