Webflow sync, pageviews & more.
NEW

How can I create a sliding effect for a div element in Webflow when a button is clicked? The first two buttons are already working, but I need help figuring out how to make the other three buttons work as well. I've been looking into jQuery and other tools, but I'm still unsure. Thank you for any assistance!

TL;DR
  • Add a unique data attribute (e.g., data-slide-target) to each button and matching ID to each target div.
  • Set all target divs to be initially hidden and identically styled for consistent animations.
  • Use one Webflow interaction or jQuery script to hide all panels, then show the selected one based on the clicked button’s data attribute.

You're trying to make a div slide in or out when buttons are clicked. You've already got the first two buttons working, but need help applying the same effect to the remaining three buttons.

1. Use a Single Webflow Interaction for All Buttons

To avoid needing separate interactions for every button, you can use Webflow’s built-in interactions with custom attributes (like data-attributes or Combo Classes).

  • Select each Button and give them a unique ID or attribute, e.g., data-slide-target="panel-1", data-slide-target="panel-2", etc.
  • Create corresponding Div Blocks with matching IDs or classes, such as id="panel-1", id="panel-2", etc.

2. Structure the Target Divs

Ensure each target div you're showing/hiding is:

  • Positioned correctly (e.g., Absolute if overlapping)
  • Initially hidden (Display: None)
  • With the same base class to apply shared animations

3. Create a Reusable Slide Interaction

Use an interaction to show one div while hiding others.

  • Go to Interactions panel > Element Trigger → Mouse Click (Tap)
  • Use "Affect another element", and target by class or use the data-slide-target value with custom jQuery (see below)
  • Apply the animation:
  • Hide all panels first (set to Display: None, opacity 0, optional move)
  • Then show the selected panel (Display: Block, opacity 100%, move position)

4. Use jQuery If Interactions Are Not Flexible Enough

If you're using jQuery for more dynamic control, make sure to add it properly in your project.

Add this to Page Settings > Footer Code or an Embed block:

<script>  $(document).ready(function() {    $('[data-slide-target]').on('click', function() {      var target = $(this).data('slide-target');      // Hide all panels first      $('.slide-panel').slideUp();      // Show the target panel      $('#' + target).slideDown();    });  });</script>

Important:

  • All your sliding panels should have class slide-panel.
  • Each panel should have an id matching the button's data-slide-target.

5. Publish and Test

After setup:

  • Publish to staging (Editor view won't run custom code)
  • Click each button and verify the correct panel slides down while others hide

Summary

To make all five buttons trigger a sliding div effect:

  • Use data-slide-target attributes to map buttons to divs
  • Structure divs consistently with Display: None initially
  • Use Webflow interactions or jQuery logic to toggle visibility based on button clicks
  • Ensure IDs/classes are correctly matched and jQuery is properly loaded

Let me know if you want to stick with Webflow-only interactions or keep using jQuery.

Rate this answer

Other Webflow Questions