如何在 React js 中悬停时在光标位置附近显示 div?
我有两个文本项目,即item1和item2,以及一个内部有一些文本的div。我想默认将DIV保留,但是当我悬停在文本1或item2上时,将其显示在光标位置。 请检查此链接中的示例gif动画
我在React中的jQuery代码中尝试了此链接。但是它会出现错误。
$(".text-item").mouseenter(function (e) {
$(".box")
.css({
position: "absolute",
right: e.pageX,
top: e.pageY,
display: "block",
})
.show();
});
I have two Text Items, item1 and item2, and a div with some text inside. I want to keep the div hidden by default but show it at cursor position when I hover on Text item1 or item2.
Please check the sample GIF animation in this Link
I tried this in Jquery code inside React. But it gives error.
$(".text-item").mouseenter(function (e) {
$(".box")
.css({
position: "absolute",
right: e.pageX,
top: e.pageY,
display: "block",
})
.show();
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: