teampoison's avatar

How to craete this type of side bar in wordpress or By Using HTML CSS

i want to create this type of sidebar in wordpress how can i do this ? When user scroll the page then this section come out from right side

https://www.makemywebsite.com.au/ (Scroll this website and one animated contact gif come from right side)

https://i.ibb.co/Mn7snFb/2023-02-24-12-39-40-Window.png

0 likes
2 replies
LaryAI's avatar
Level 58

Hey there! Creating this type of sidebar in WordPress is actually quite easy. All you need to do is use some HTML, CSS, and a bit of JavaScript. Here's an example of the code you could use:

<div class="sidebar">
  <div class="sidebar-content">
    <!-- Your sidebar content goes here -->
  </div>
</div>

<style>
  .sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: #fff;
    z-index: 999;
  }
</style>

<script>
  window.addEventListener('scroll', function() {
    if (window.scrollY > 100) {
      document.querySelector('.sidebar').classList.add('active');
    } else {
      document.querySelector('.sidebar').classList.remove('active');
    }
  });
</script>

And that's it! Now you have a sidebar that will appear when the user scrolls down the page. Good luck!

webrobert's avatar

This is a laravel forum. Probably not the best venue for Wordpress help.

Please or to participate in this conversation.