Share Posted May 29, 2017 When targeting a single class in Vanilla JS staggerTo doesn't seem to work correctly, when using a array of classes it works fine. Works fine if using jquery in commented out code. Please advise. See the Pen QvRVEx by rgfx (@rgfx) on CodePen Link to comment Share on other sites More sharing options...
Share Posted May 29, 2017 Hi @rgfx Instead of querySelector which only returns the first element matching the query, please try querySelectorAll which returns a NodeList. var test = document.querySelectorAll('.text'); Hopefully that helps. Happy tweening. 4 Link to comment Share on other sites More sharing options...
Author Share Posted May 29, 2017 Oh, I get it, that works. Thanks for the help. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now