微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Javascript React影像玻璃放大镜

如何解决Javascript React影像玻璃放大镜

我有这个玻璃放大镜(来自https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_image_magnifier_glass),在我的react项目中可以正常打开onClick,但是我想让它在其他点击时切换打开/关闭状态,但是没有关闭

这是我应该实现的功能,但是无论我的zoomActive状态设置为true还是false,缩放始终保持打开状态。谁能告诉我我在做什么错?谢谢!

 const [zoomActive,setZoomActive] = useState(false)

    /* Initiate Magnify Function
with the id of the image,and the strength of the magnifier glass:*/
    const handleMagnifier = () => {
        setZoomActive(!zoomActive)
        zoomActive && magnify(myImageId,3)
        console.log('MAGNIFIER-GLASS-STATE???',zoomActive)
    }

这里是onClick函数

 <div
                                    className="img-magnifier-container"
                                    onClick={handleMagnifier}
                                >
                                    <img
                                        id={myImageId}
                      
                                        src={graphicImage}
                                        alt="mobile graphic"
                                    />
                                </div>

和CSS:

.img-magnifier-container {
    position: relative;
    cursor: zoom-in;
}
.img-magnifier-glass {
    position: absolute;
    border: 3px solid $tangerine;
    border-radius: 50%;
    cursor: none;
    /*Set the size of the magnifier glass:*/
    width: 200px;
    height: 200px;
}

解决方法

以防万一,它对我有帮助。像这样:

 const handleMagnifier = () => {
        setZoomActive(!zoomActive)
        let glass = document.getElementsByClassName('img-magnifier-glass')
        !zoomActive ? magnify(myImageId,3) : glass[0].removeAttribute('class')
    }

不确定这是否是最好的方法,但是它可行。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。