Jump to content
Search Community

GSAP target not found

Bryan.lwj test
Moderator Tag

Go to solution Solved by Carl,

Recommended Posts

I have no idea why gsap is not working.

it display GSAP target .box not found. in console 

this is my code:

 

<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.1/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.1/ScrollTrigger.min.js"></script>
</head>
<body>
    <script>
        gsap.to(".box",{
            x:500,
            duration: 3
        })
    </script>
 
    <style>
        .background{
            background: white;
            width: 100%;
            height: 100vh;
        }
        .box{
            width: 300px;
            height: 300px;
            background-color: black;
        }
    </style>
    <div class="background">
        <div class="box"></div>
    </div>
</body>
Link to comment
Share on other sites

  • Solution

Hi and welcome to the GreenSock forums.

 

Your gsap code is running BEFORE box is available in the DOM.

Move your code to the bottom. Usually best right before the closing </body> tag

<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.1/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.1/ScrollTrigger.min.js"></script>

   
 
    <style>
        .background{
            background: white;
            width: 100%;
            height: 100vh;
        }
        .box{
            width: 300px;
            height: 300px;
            background-color: black;
        }
    </style>
    <div class="background">
        <div class="box"></div>
    </div>

 <script>
        gsap.to(".box",{
            x:500,
            duration: 3
        })
    </script>

 

Check out my free GSAP beginner's course. I think you'll find it helpful

https://www.creativecodingclub.com/courses/gsap-3-express

 

 

 

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

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

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...