Source: https://wpcreatorsclub.com/divi-background-image-zoom-hover-css/
Add a background image on the modules content tab. Then add the following free-form CSS to the module:
selector{
background-size: 100%;
transition: all 3s ease;
}
selector:hover{
background-size: 130%;
}
Code language: CSS (css)