Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

Lay Theme Forum

  1. Home
  2. Bug Reports
  3. Scripts with scroll functions have stopped working on several sites

Scripts with scroll functions have stopped working on several sites

Scheduled Pinned Locked Moved Bug Reports
3 Posts 3 Posters 105 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    jorgenbry
    wrote on last edited by
    #1

    Hi. On two of my Lay theme sites, javascript scroll functions that worked when making the sites suddenly have suddenly stopped working. All of these three code snippets have stopped working. Do you have any idea why, and how to make them work again? All code is added with the Custom CSS and HTML settings.

    1 – On jimmylinus.com, the following code made the the About-link in second-menu offset above the footer when scrolling down.

    <script>
    $(window).scroll(() => {
        const footerToTop = $('#footer-region').position().top;
        const scrollTop = $(document).scrollTop() + $(window).height();
        const difference = scrollTop - footerToTop;
        const bottomValue = scrollTop > footerToTop ? difference : 0;
        $('nav.second_menu').css('bottom', bottomValue+25);
    });
    </script>
    

    2 – On the same site, the next and previous project arrows (as text) gradually increased in opacity when scrolling down. Now they are only visible on hover. This is the code:

    <script>
             $(document).ready(function(){ 
                $(window).scroll(function(){ 
                    $('.project-arrow').css("opacity", 0+ $(window).scrollTop() / $(document).height() ) 
                }) 
            }) 
    </script>
    

    3 – And on another site, colin.no, thumbnails for previous and next projects appeared after scrolling 90% of the height. This is the code:

    <script>
    
    $(document).scroll(function() {
      var scrollPercent = 100 * $(window).scrollTop() / ($(document).height() - $(window).height());
      if (scrollPercent > 90) {
        $('.project-arrow').fadeIn();
      } else {
        $('.project-arrow').fadeOut();
      }
    });
    
    </script>
    

    Please let me know how to fix these!

    1 Reply Last reply
    0
    • RichardR Offline
      RichardR Offline
      Richard
      Global Moderator
      wrote on last edited by
      #2

      Dear @jorgenbry

      Thank you for your patience
      I will forward this so that we can take a closer look

      Best wishes
      Richard

      1 Reply Last reply
      0
      • arminunruhA Online
        arminunruhA Online
        arminunruh
        Global Moderator
        wrote on last edited by
        #3

        hey please use 'jQuery' instead of '$' (without the '')

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        I also code custom websites or custom Lay features.
        šŸ’æ Email me here: šŸ’æ
        info@laytheme.com

        Before you post:
        1. When using a WordPress Cache plugin, disable it or clear your cache.
        2. Update Lay Theme and all Lay Theme Addons
        3. Disable all Plugins
        4. Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"

        This often solves issues you might run into

        When you post:
        1. Post a link to where the problem is
        2. Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
        3. If the problem is difficult to explain, post screenshots / link to a video to explain it
        Online Users
        arminunruhA
        arminunruh
        G
        Glyph
        Forgot your key, lost your files, need a previous Lay Theme or Addon version? Go to www.laykeymanager.com
        laytheme.com
        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Recent
        • Tags
        • Popular
        • Users
        • Search