“GSAP реагирует” Ответ

GSAP реагирует

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 реагирует

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

Ответы похожие на “GSAP реагирует”

Вопросы похожие на “GSAP реагирует”

Больше похожих ответов на “GSAP реагирует” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования