How to Add a Scroll Down Hover Effect to Preview Web Page Designs in Divi

Last Updated on September 18, 2022 by 14 Comments

How to Add a Scroll Down Hover Effect to Preview Web Page Designs in Divi
Blog / Divi Resources / How to Add a Scroll Down Hover Effect to Preview Web Page Designs in Divi

Whether it’s in a portfolio page or an image gallery, web designers need to showcase their designs for clients as a crucial part of driving business. And, many times, these examples of their work include images of entire web page designs which can take up a lot of space. That’s why adding a scroll down hover effect to these images can set your portfolio apart. This allows the user to see a compact portion of the design initially. But when the user hovers over the image, the image scrolls to slowly reveal the rest of the design as if they are scrolling down a web page. You can see this type of effect being used on our very own Divi Layout Packs page.

In this tutorial, I’m going to show you how to use Divi to add a scroll down hover effect to images that will allow users to preview web page designs. This is an elegant interactive element that I think you are going to love.

Sneak Peek

Here is a preview of the scroll down hover effect we will build together in this tutorial.

divi scroll down hover effect

Download the Scroll Down Hover Effect Layout for FREE

To lay your hands on these example scroll down hover effect designs, you will first need to download it using the button below. To gain access to the download you will need to subscribe to our newsletter by using the form below. As a new subscriber, you will receive even more Divi goodness and a free Divi Layout pack every Monday! If you’re already on the list, simply enter your email address below and click download. You will not be “resubscribed” or receive extra emails.

To import the layout to your page, simply extract the zip file and drag the json file into the Divi Builder.

Now let’s get to the tutorial shall we?

What You Need to Get Started

For this use case tutorial, we are going to build our design from scratch using Divi. You will also need some images/screenshots to use for the portfolio items. I would suggest using images that are at least 1080px in width.

Creating the Three Column Row

If you haven’t already, create a new page. Then give your page a title and deploy the Divi builder on the front end. Then create a new section with a three-column row.

divi scroll down hover effect

Update the row settings as follows:

Custom Width: 100%
Custom Padding (desktop): 5% left, 5% right
Custom Padding (tablet): 25% left, 25% right
Custom Padding (phone): 15% left, 15% right

Next, we need to add the following custom CSS snippets to each of the column main elements. Under the advanced tab, add the following CSS:

Column 1 Main Element CSS:

overflow: hidden;
height: 400px;

Column 2 Main Element CSS:

overflow: hidden;
height: 400px;

Column 3 Main Element CSS:

overflow: hidden;
height: 400px;

divi scroll down hover effect

Notice the height of each of the columns is 400px. This will ultimately serve as the height of the viewport of the image that will scroll on hover. The “overflow: hidden” property will make sure the portion of the image that is moved outside the column (on hover) remains hidden. This should make more sense whenever we add the transform hover effect to the image.

Creating the Image with Scroll Down Hover Effect

Now we are ready to start creating our image with the scroll down hover effect. This is surprisingly simple if you understand how the effect works. Basically, all we are going to do is add an image and then use the transform translate property to move the image upward by 100% on hover. Then in order to make sure the image stops at the right position, we need to add a top margin equal to the height of the column on hover. This will make sure the image stops scrolling at the exact point the bottom of the image is in view.

Here’s how to do it.

Add an image module to the column 1. Then add the following hover options:

Custom Margin (hover): 400px top
Transform Translate Y-axis (hover): -100%

Make sure the custom top margin on hover is equal to the height given to your column in custom CSS above.

Also, the transform translate Y-axis value is a percentage (-100%), not pixels, so you will need to enter this manually by typing the value in the input box of the transform translate controls.

divi scroll down hover effect

How the Scroll Down Hover Effect Works

It might help if I explain the functionality of this setup with a few visual illustrations. Let’s say that the image you are using has a height of 700px. The column height is only 400px. This means that By default (before hover), the bottom overflow of that image will be hidden since it extends outside the column.

divi scroll down hover effect

Once the user hovers over the image, two things happen.

First, the transform translate property moves the image upward with a Y-axis value of -100%. In other words, the image moves up 100% of whatever the image height is (700px).

divi scroll down hover effect

Next, the image is given a top margin of 400px to bring the image back down into the column viewport so that its sits perfectly at the bottom.

divi scroll down hover effect

This happens simultaneously along with the transform hover effect so the result is a smooth scroll that ends in perfect placement.

Here is what the result looks like on the live example.

divi scroll down hover effect

Adjusting Transition Duration and Speed Curve

As you can tell, the transition duration is too fast for previewing the image on hover. To slow it down, you can update the transition duration. You can also adjust the speed curve to change the speed during the duration.

Update the following:

Transition Duration: 4000ms
Transition Speed Curve: Ease

divi scroll down hover effect

In general, you will want to increase the transition duration for images with greater height to give the user time to process the image as the hover scroll effect occurs.

Copy and Paste the Image Module into remaining columns

Now all you will need to do is copy the image module and paste it into column 2 and column 3. Then update the images for each to whatever new image you want. That’s it!

divi scroll down hover effect

Adding a Heading Above Each Image Using a Text Module

If you would like to add a heading to each of your images, you can do this using the text module. However, we will need to make some adjustments to the text module and the image module to make it work.

Go ahead and add a new text module above the image in column 1. You will be easier to use wireframe view mode since your column is set to a column height.

divi scroll down hover effect

Then update the content with an h2 heading as follows:

<h2>Homepage</h2>

divi scroll down hover effect

Then update the design settings as follows:

Background Color: #ffffff
Text Orientation: center
Heading 2 Text Size: 20px
Heading 2 Line Height: 2em
Custom Margin: 0px bottom
Custom Padding: 10px top
Box Shadow: see screenshot

divi scroll down hover effect

These settings may seem arbitrary, but they aren’t. These values can predict what the height of the text module will be which is important to know for later. For example, I know that the text module will have a height of 60px. Let’s do the math…

The line height is 2em which is 2 times the heading 2 text size (20px). This means my line height is going to be 40px.

The custom top padding is set to 10px. And there is hidden bottom padding of 10px that exists already for all headings by default in Divi. The top and bottom padding combine for 20px of added height.

So… 40px (of line height) + 20px (of padding) = 60px

divi scroll down hover effect

Now we know the height of the text module. Of course, you can always inspect the element using dev tools just to make sure.

The custom bottom margin of 0px is needed to take out the default margin that exists below the module (added by gutter width).

Since there will be some overlapping of the image with the text module on hover, we need to make sure the text module stays layered above the image. We can do this by giving the text module a relative position and changing the z-index value as follows:

Add the following custom CSS to the Main Element:

position:relative;

Then update the z index:

Z Index: 3

divi scroll down hover effect

Copy and Paste the Text Module

Now that the text heading is done, we can copy and paste it (using wireframe view mode) above the images in column 2 and 3.

divi scroll down hover effect

Then all you need to do is update the content for each.

divi scroll down hover effect

Update the Top Margin Value on Hover for Each Image to Accommodate for the Text Module Height

Currently, each of the images in columns 1, 2 and 3 have a custom top margin of 400px on hover. This was set to equal the height of the custom height of the column. However, since the text module is now taking up some of the column space (a height of 60px), we need to adjust the top margin hover value.

To do this, use the multiselect feature to select all three images. Then update the element settings as follows:

Custom Margin (hover): 340px top

divi scroll down hover effect

Now your images will stop perfectly at the bottom of the column at the end of the hover state.

Final Result

Here is the final result of the design.

divi scroll down hover effect

Feel free to duplicate the row and update the images and heading text as needed for more portfolio displays.

divi scroll down hover effect

Here is what it looks like on tablet and phone.

divi scroll down hover effect

divi scroll down hover effect

Final Thoughts

Showcasing your web page designs with a custom scroll down hover effect not only adds a really cool interaction, but it also saves a lot of space. This allows you to display a lot of images in a compact and symmetrical layout. This kind of functionality is usually something we would get with a plugin. However, with Divi, you have complete control over the design and functionality without having to add another plugin. I hope this inspires you to create beautiful portfolio galleries for you next project.

I look forward to hearing from you in the comments.

Cheers!

Divi Marketplace

Are You A Divi User? Find Out How To Get More From Divi! 👇

Browse hundreds of modules and thousands of layouts.

Visit Marketplace
Divi Marketplace
Divi Cloud

Find Out How To Improve Your Divi Workflow 👇

Learn about the new way to manage your Divi assets.

Get Divi Cloud
Divi Cloud
Divi Hosting

Want To Speed Up Your Divi Website? Find Out How 👇

Get fast WordPress hosting optimized for Divi.

Speed Up Divi
Divi Hosting
Premade Layouts

Check Out These Related Posts

Get a Free Coffee House Layout Pack For Divi

Get a Free Coffee House Layout Pack For Divi

Posted on April 22, 2024 in Divi Resources

Hey Divi Nation! Thanks for joining us for the next installment of our weekly Divi Design Initiative; where each week, we give away a brand new Layout Pack for Divi. This time around, the design team has created a beautiful Coffee House Layout Pack that’ll help you get your next Coffee House...

View Full Post

14 Comments

  1. Hi Jason,

    Thank you for great tutorial, What if I want the image to scroll up and down on its own? Without hovering over it. Is there a way to that that?

  2. I tried to import the file from this post into the Divi library and the upload failed with the message, “This file should not be imported in this context.”

    • Make sure to add the json file to the Divi Builder. Not the Divi Library. You can simply drag the file into the Divi Builder for a quick import.

    • Make sure the file you are importing is the json file ONLY, not the zip file. Unzip the zip file, and import the json file titled “scroll-down-hover effect-divi-layout.json”. Hope this helps!

  3. Lovely!

  4. Thank you very much. that’s really awesome to have a guideline and to showcase our designs… what do you suggest the image size to be? I see 888×2272 .
    Does that mean that most sites should try to stay in the displayable range of this capture image? For example: one of the sites I built seems to require a much longer display area. Should I talk to my customer about reducing the length of the page or should I just leave some gutter space and try to fit the entire page image?

  5. Any idea of how you can add a filter to that?

  6. Good idea Jason!

  7. Hey Jason,
    Your post is great, thanks for taking the time to explain everything in great detail and for the handy download too.
    Much appreciated!

  8. Can’t thank you enough. very good

  9. This really comes in handy and perfect timing since I was thinkin about updating my portfolio. Thank you!

  10. Clever – this is great. thank you for sharing.

  11. Thank you, this is awesome!

  12. I was waiting for this example for a long time :-). Thank you!

Leave A Reply

Comments are reviewed and must adhere to our comments policy.

Join To Download Today