Allows GSAP to animate the raw style sheet rules which affect all objects of a particular selector rather than affecting an individual DOM element's style
(that's what the CSSPlugin is for).
For example, if you have a CSS class named ".myClass"
that sets background-color
to "#FF0000"
, you could tween that to a different color and ALL of the objects on the page that use ".myClass"
would have their background color change. Typically it is best to use the regular CSSPlugin to animate css-related properties of individual elements so that you can get very precise control over each object, but sometimes it can be useful to tween the global rules themselves instead. For example, pseudo elements (like :after, :before,
etc. are impossible to reference directly in JavaScript, but you can animate them using CSSRulePlugin as shown below.
See the Pen CSSRulePlugin by GreenSock (@GreenSock) on CodePen.
Learn more in the CSSRulePlugin documentation. To learn how to include the CSSRulePlugin into your project, see the GSAP install docs.
Recommended Comments
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