chrome 扩展弹出窗口
我开发了一个内部有链接的扩展程序,一旦用户将鼠标悬停在这些链接上,就会出现一个描述该链接的工具提示,当链接靠近扩展程序弹出窗口的边框时,会出现问题,工具提示会出现,但会出现其中的一部分,而不是这些工具提示内的所有内容,我想是因为它位于弹出窗口的框架下方。
是否可以使工具提示出现在弹出窗口的框架上方?
问候,
I have developed an extension with links inside, once user hover over these links a tooltip appear describing the link, the problem when the link close to the border of the extension popup the tooltip appears but part of it not all the contents inside these tooltip, I think because it's below the frame of the popup.
Is it possible to make the tooltip appears above the frame of the popup?
Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
title=
属性实现工具提示,则无法控制它们的位置。但是,您可以在 JS 中创建自己的工具提示,并将其放置在弹出窗口的范围内,使用类似 Tipped。快速搜索将找到数百个其他库。If you're implementing tooltips with
title=
attributes, you can't control where they are positioned. However you can create your own tooltips in JS and position them as within the bounds of the popup, using something like Tipped. A quick search will bring up hundreds of other libraries.