How to Create Image Magnifier in React JS

Поделиться
HTML-код
  • Опубликовано: 14 дек 2024

Комментарии • 5

  • @pranayaryal
    @pranayaryal 11 месяцев назад +3

    Thanks, really helpful.
    To account for window scroll:
    const x = ((e.pageX - left - window.scrollX) / width) * 100
    const y = ((e.pageY - top - window.scrollY) / height) * 100
    let cursorX = e.pageX - left - window.scrollX
    let cursorY = e.pageY - top - window.scrollY
    setPosition({ x, y })
    setCursorPosition({ x: cursorX, y: cursorY })

    • @realg701
      @realg701 26 дней назад

      whoa, thanks.
      how can i magnify even closer?

  • @realg701
    @realg701 26 дней назад

    great video really healpful, how can i magnify even closer?

  • @muhammedakil1531
    @muhammedakil1531 11 месяцев назад +1

    thanks i tried this
    😎it is working