“GSAP React” Kod odpowiedzi

GSAP React

function App() {
  // store a reference to the box div
  const boxRef = useRef();

  // wait until DOM has been rendered
  useEffect(() => {
    gsap.to(boxRef.current, { rotation: "+=360" });
  });
  
  // DOM to render
  return <div className="box" ref={boxRef}>Hello</div>;
}
Smiling Squirrel

GSAP React

const el = useRef();
const q = gsap.utils.selector(el);

useEffect(() => {
   // Target ALL descendants with the class of .box
  gsap.to(q(".box"), { x: 100 });
}, []);
Smiling Squirrel

Odpowiedzi podobne do “GSAP React”

Pytania podobne do “GSAP React”

Więcej pokrewnych odpowiedzi na “GSAP React” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu