Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

increase the size of an image on hover using css

img { 
	transition: all .2s ease-in-out; 
}
img:hover { 
    	transform: scale(1.5); 
    }
 
PREVIOUS NEXT
Tagged: #increase #size #image #hover #css
ADD COMMENT
Topic
Name
1+2 =