ImageMapster - 鼠标悬停时不显示工具提示
ImageMapster - tooltips not showing on mouseover
我开始使用 ImageMapster JQuery 插件,但很快就卡住了。当我将鼠标悬停在某个区域上时,我想显示一个工具提示,但它不起作用。我使用 "id" 参数作为区域键,并希望在将鼠标指向 id= "sam".
的区域时显示工具提示
这是我的代码 - 它非常简单,我不知道我做错了什么。谁能帮帮我?问题不在 ImageMapster 本身,因为它的其他功能有效。谢谢
<img id="mapka" src="../Img/Maps/bigmap.JPG" usemap="#mymap" width="880">
<map id="geo_map" name="mymap">
<area shape="rect" id="sam" coords="135,62,216,167" href="/map/samegrelo">
</map>
<script> $(document).ready(
function () {
$('#mapka').mapster({
singleSelect: true,
fill: true,
mapkey: 'id',
fillOpacity: 0.3,
fillColor: 'ff0000',
clickNavigate: true,
showToolTip: true,
onMouseover: function (e) {
$(this).mapster('set', false).mapster('set', true);
},
onMouseout: function (e) {
$(this).mapster('set', false);
},
areas: [
{
key: "sam",
toolTip: "Don't mess with Texas"
}]
});
})
</script>
终于找到问题出在哪里了。我在函数中使用 "mapkey" 而不是 "mapKey" 并且它似乎区分大小写。
我开始使用 ImageMapster JQuery 插件,但很快就卡住了。当我将鼠标悬停在某个区域上时,我想显示一个工具提示,但它不起作用。我使用 "id" 参数作为区域键,并希望在将鼠标指向 id= "sam".
的区域时显示工具提示
这是我的代码 - 它非常简单,我不知道我做错了什么。谁能帮帮我?问题不在 ImageMapster 本身,因为它的其他功能有效。谢谢
<img id="mapka" src="../Img/Maps/bigmap.JPG" usemap="#mymap" width="880">
<map id="geo_map" name="mymap">
<area shape="rect" id="sam" coords="135,62,216,167" href="/map/samegrelo">
</map>
<script> $(document).ready(
function () {
$('#mapka').mapster({
singleSelect: true,
fill: true,
mapkey: 'id',
fillOpacity: 0.3,
fillColor: 'ff0000',
clickNavigate: true,
showToolTip: true,
onMouseover: function (e) {
$(this).mapster('set', false).mapster('set', true);
},
onMouseout: function (e) {
$(this).mapster('set', false);
},
areas: [
{
key: "sam",
toolTip: "Don't mess with Texas"
}]
});
})
</script>
终于找到问题出在哪里了。我在函数中使用 "mapkey" 而不是 "mapKey" 并且它似乎区分大小写。