Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

scss transition

div {
  transition: all 0.5s ease;
  background: red;
  padding: 10px;
}
div:hover {
  background: green;
  padding: 20px;
}
Source by css-tricks.com #
 
PREVIOUS NEXT
Tagged: #scss #transition
ADD COMMENT
Topic
Name
3+3 =