TrimbyPhotography Posted January 30 Share Posted January 30 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 Link to comment
Solution paul2009 Posted January 30 Solution Share Posted January 30 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 ⬇️ About: Squarespace Circle Leader since 2017. I value honesty, transparency, diversity and great design ♥.Work: Squarespace Developer and founder of SF Digital, building the features Squarespace didn't include™. Content: Links in my posts may refer to SF Digital products or may be affiliate links. Catch up on all the release notes and announcements 2023 [for Circle members only]. There's a public version here too!If I helped, you can thank me by clicking one of the emojis below. If you prefer, you can buy me a coffee.Improve your online store with our extensions. Link to comment
TrimbyPhotography Posted February 1 Author Share Posted February 1 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. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment