Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how to do a smooth transform scale

img{
  transition: transform 100ms ease-in-out;
}
img:hover{
  transform: scale(1.1);
}
 
PREVIOUS NEXT
Tagged: #smooth #transform #scale
ADD COMMENT
Topic
Name
3+6 =