Custom Logo Animation on Scroll – Can’t Get JavaScript Working (403 Errors)
-
Hey, you don't need to wrap a scroll event handler in
newPageShown
.Just remove the new page shown, outer text.
Your code starts with jQuery(window).on('scroll',I think a 403 error is not a JavaScript error. It's a HTTP error. If you Google "403 error," you will find out more. Do you have a link to the website where you are trying to do this?
-
Also, you don't need a scroll spacer if you have enough content on your page. If you take a look at the body class, Lay Theme already adds an HTML class when you scroll down and removes it when you scroll up.
This HTML class is called. lay-scrolled-down
So theoretically, you don't even need your JavaScript.
-
thanks! yes this is the website: https://asistenciaartistica.com
-
Okay, when I'm here on my Chrome browser, I can scroll down and the logo gets smaller, and I don't see any 403 error
-
I was getting the 403 error in the custom css+html section after adding javascript. now I did what you suggested and it works! only thing is every time I reach the bottom the animation goes back to what it is at the top and it glitches, what could be causing this?
-
Okay, yeah I see. It's better to use your JavaScript for setting the HTML class for scroll up or down.
Because my JavaScript that sets the laytheme scroll up or down class works differently.
-
<script> jQuery(window).on("scroll", function() { if (jQuery(window).scrollTop() > 50) { jQuery("body").addClass("scrolled"); } else { jQuery("body").removeClass("scrolled"); } }); </script>
Your JavaScript needs to look like this. You need to add the script tags around your JavaScript.
-
ok thanks so much!
-
also I see you added my other website to the featured list, eduardocaballero.com, glad you liked it. love lay theme thanks for the work!
-
Yeah, their website is also really nice. Thanks a lot!
11/11
I also code custom websites or custom Lay features.
💿 Email me here: 💿
info@laytheme.com
Before you post:
- When using a WordPress Cache plugin, disable it or clear your cache.
- Update Lay Theme and all Lay Theme Addons
- Disable all Plugins
- 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:
- Post a link to where the problem is
- Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
- If the problem is difficult to explain, post screenshots / link to a video to explain it