Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

box shadow css transition

/* Scale up the box */
.box:hover {
  transform: scale(1.2, 1.2);
}

/* Fade in the pseudo-element with the bigger shadow */
.box:hover::after {
  opacity: 1;
}
Source by tobiasahlin.com #
 
PREVIOUS NEXT
Tagged: #box #shadow #css #transition
ADD COMMENT
Topic
Name
7+6 =