我有一个使用 Qtip 的图像映射,我希望工具提示同时显示在左眼和右眼上,但工具提示没有显示。
这是我的 JS 代码:
$(document).ready(function()
{
$('area[alt]').qtip(
{
content: {
attr: 'alt'
},
hide: {
fixed: true,
delay: 500
},
style: {
classes: 'qtip-tipsy qtip-shadow'
},
position: {
viewport: $(window)
}
});
});
这是HTML:
<map name="Koala">
<area alt="Left Eye" shape="rect" coords="373,365,404,402" href="#" />
<area alt="Right Eye" shape="rect" coords="641,405,681,448" href="#" />
<!-- .... more hotspots would be listed here -->
</map>
当我尝试此代码时,Qtip 根本没有出现,我不知道为什么,任何帮助将不胜感激!