Help for vouch

Status
This thread has been locked.

Shaun

Web Developer, owner of Syncore LLC
Supreme
Feedback score
20
Posts
625
Reactions
408
Resources
0
You mean turn it into an <img>? First off, you'll need to have a green box image. Second, when hovering over that image (img: hover) you'll need to add a transform property and scale it. Lastly, to give it that smooth transition - add the transition property to the img element in your CSS. Here is what the code will look like.
Code:
=== HTML ===

<img src="path/to/img" alt="Green Box" />

=== CSS ===

img{
transition: transform 1s;
}

img:hover {
transform: scale(1.5);
}
 
Status
This thread has been locked.
Top