Quantcast
Channel: Forum | Webflow - Latest topics
Viewing all articles
Browse latest Browse all 89772

Endless Scrolling causes troubles with mobile Navigation

$
0
0

@mjerxsen wrote:

Hey folks.

After I installed the costum code for a continuous looping page like this: http://www.thefourthphase.com
My mobile Navigation doesn't expand anymore. The menu button is still there, but it does not show the menu.

I think the code cross path with some webflow code or features. So maybe someone can help me.

Btw. this ist the costum code I've entered in the :


<script>
$('document').ready(function() {
      var origDocHeight = document.body.offsetHeight;
      $("body").contents().clone().appendTo("body");
      $(document).scroll(function(){
          var scrollWindowPos = $(document).scrollTop(); 
          if(scrollWindowPos >= origDocHeight ) { 
              $(document).scrollTop(0); 
          }       
      });
  }); 
</script>

Thanks in advance.
Micha

Posts: 3

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 89772

Trending Articles