Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

hover effect button css

/*CSS Hover*/
.button {
  border-radius: 3px;
  border: none;
  background-color: red;
  color: white;
  transition: all 0.3s ease
}
.button:hover {
  transform: rotate(360deg);
  transform: scale(1.01);
}
 
PREVIOUS NEXT
Tagged: #hover #effect #button #css
ADD COMMENT
Topic
Name
2+8 =