On this video i am showing you how to make zoom on hover when you move on image with
CSS , while i used Elementor page builder via wordpress, you can do it on any website whatever the way it made by.
the code used :
for transition :
.css class (
transition: transform 2s;
}
for hover :
.css class:hover {
-ms-transform: scale(1.5); /* IE 9 */
-webkit-transform: scale(1.5); /* Safari 3-8 */
transform: scale(1.5);
}
--------------------------
Source : https://www.w3schools.com/howto/tryit...