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: SQSP User for 17 yrs. Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF Digital, building Squarespace Extensions to supercharge your commerce website. Content: Links in my posts may refer to SF Digital products or may be affiliate links. If my advice helped, you can thank me by clicking one of the feedback emojis below. I love coffee too. 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