我已经安装了 Qtip 并将其用于地图上的工具提示:
http://www.gregquinn.com/oneworld/about_people6.html
您可以翻转红色大头针并查看现在的工具提示。
但他们想要这样,当您将“意大利”一词(左侧的文字)滚动时,相同的工具提示会在地图上意大利所在的红色大头针旁边弹出。
对于地图上的红色图钉,我使用带有 ALT 标签的图像地图来触发工具提示,如下所示:
<script class="example" type="text/javascript">
// Create the tooltips only when document ready
$(document).ready(function()
{
// We'll target all AREA elements with alt tags (Don't target the map element!!!)
$('area[alt]').qtip(
{
content: {
attr: 'alt' // Use the ALT attribute of the area map for the content
},
style: {
classes: 'ui-tooltip-tipsy ui-tooltip-shadow ui-tooltip-light'
}
});
});
</script>
Qtip文档说您可以定位一个位置(position: { target: $('ul:first li:last') }
),但我不知道该怎么做,或者我可以定位地图坐标并将所有这些都存在于一个页面上?