TrimbyPhotography Posted January 30, 2023 Posted January 30, 2023 Hi All, I am trying to add Custom CSS to allow content to fade when scrolling down. I am however given a 'Syntax Error on Line 1' (and others) message. Please can you advise what should be changed? Code as follows: <style> .fade-out { opacity: 1; transition: opacity 0.5s ease-out; } .fade-out-scroll { opacity: 0; } </style> <script> document.addEventListener('DOMContentLoaded', function() { var sections = document.querySelectorAll('.sqs-block'); var observer = new IntersectionObserver(function(entries) { entries.forEach(function(entry) { if (entry.intersectionRatio <= 0) { entry.target.classList.add('fade-out-scroll'); } else { entry.target.classList.remove('fade-out-scroll'); } }); }); sections.forEach(function(section) { observer.observe(section); }); }); </script> Thanks for your help
Solution paul2009 Posted January 30, 2023 Solution Posted January 30, 2023 3 minutes ago, TrimbyPhotography said: I am trying to add Custom CSS. I am however given a 'Syntax Error on Line 1' The code you've quoted isn't CSS. It is HTML (that contains CSS and JavaScript). It must be added in the Code Injection panel, not Custom CSS. Did this help? Please give feedback by clicking an icon below ⬇️ Me: I'm Paul, a SQSP user for >18 yrs & Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF.DIGITAL. We provide high quality original extensions to supercharge your Squarespace website. Content: Views and opinions are my own. Links in my posts may refer to my own SF.DIGITAL products or may be affiliate links. Forum advice is completely free. You can thank me by selecting a feedback emoji. Buying a coffee is generous but optional.
TrimbyPhotography Posted February 1, 2023 Author Posted February 1, 2023 On 1/30/2023 at 9:32 PM, paul2009 said: The code you've quoted isn't CSS. It is HTML (that contains CSS and JavaScript). It must be added in the Code Injection panel, not Custom CSS. Did this help? Please give feedback by clicking an icon below ⬇️ Thanks a lot for your help.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment