Jump to content

Syntax Error - Scroll Fade Custom CSS

Go to solution Solved by paul2009,

Recommended Posts

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
  • Replies 2
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

  • Solution
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
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

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.