使用 jQuery 创建交互式骨架?
我试图创建一个交互式骨架(人型),当用户将鼠标悬停在特定点上时,会出现一个弹出窗口/工具提示,显示详细信息。
我脑子里有一个关于我应该如何解决这个问题的理论,它包括一个稍微修改的 coda jquery 工具提示脚本和使用坐标。
我的问题是其他人会怎么做?理想情况下,我希望尽可能多的浏览器可以访问它 - 我意识到这并不完全可能。
有没有人有比使用 Coda 效果更好的建议?
Im trying to create an interactive skeleton (human type) whereby when a user rolls over a specific point a popup/tooltip appears showing details.
I have a theory in my head as to how I should go about this, it includes a slightly modified coda jquery tooltip script and using co-ordinates.
My question is how others would do this? Ideally I would like it to be accesible to as many browsers as possible - i realise this isnt entirely possible.
Does anyone have a better suggestion than using the Coda for the effect?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您也许可以使用 jQuery Map Hilight 插件。它使用
和
标签,并添加了漂亮的亮点。我不确定它与其他插件的配合效果如何,可能需要一些工作。
这样做的好处是可以降级为带有区域工具提示的常规
。
You may be able to use the jQuery Map Hilight plugin. It's using
<map>
and<area>
tags, and adds nice highlights. I'm not sure how well it playes with the other plugin, it may take some work.This has the benefit of degrading into a regular
<img>
with area tooltips.您可以使用老式图像映射或图像上的透明 DIV 来触发效果。我宁愿使用 beautyTips 而不是 Coda,但这不是重点。
You can use an old-fashioned imagemap, or transparent DIVs over an image to trigger the effect. I'd rather use beautyTips instead of Coda, but that's besides the point.