我在网上搜索得很高,并且无法找到使用jQuery淡化Google地图中的InfoBox / InfoWindow而不是实际框/窗口内容的教程或示例。这是我的代码,我不确定我做错了什么,但似乎也不对。
google.maps.event.addListener(marker, 'mouseover', function() {
ib.setContent(html);
ib.open(map, marker);
ib.setValues({type: "point", id: 2})
var idName = marker.get("id"); //I was trying to the id's of the elements here
var boxName = ib.get("id"); //to use in my jQuery
jQuery(idName ).mouseover(function() {
jQuery(boxName ).fadeIn('slow', function() {
// Animation complete
});
});
});
答案 0 :(得分:12)
实际上可以淡化信息框,你必须像这样覆盖infobox.js文件中的绘图功能
var oldDraw = ib.draw;
ib.draw = function() {
oldDraw.apply(this);
jQuery(ib.div_).hide();
jQuery(ib.div_).fadeIn('slow');
}
答案 1 :(得分:5)
我为网站尝试过类似的东西。这是我的代码。 (GM-API-V3)
var infowindow = new google.maps.InfoWindow({
content: contentString
});
function iwFadeIn() {
infowindow.open(map, marker);
var iw_container = $(".gm-style-iw").parent();
iw_container.stop().hide();
iw_container.fadeIn(1000);
}
答案 2 :(得分:1)
如果您覆盖绘制方法并应用淡入,即使您在地图中拖动或放大/缩小,也会播放动画。如果您不希望这种情况发生,您可以应用fadeIn in domready handler方法。在这种情况下,淡入效果只有在你打开信息窗时才会出现。
google.maps.event.addListener(ib, 'domready', function() {
jQuery(ib).hide().fadeIn('slow');
})
答案 3 :(得分:0)
在标签上使用jquery很容易。
google.maps.event.addListener(marker, "mouseover", function (e) {
//console.log(this); this.label.labelDiv_.style.display = 'block';
$(this.label.labelDiv_).fadeIn();
});
google.maps.event.addListener(marker, "mouseout", function (e) {
//this.label.labelDiv_.style.display = 'none';
$(this.label.labelDiv_).fadeOut();
});
答案 4 :(得分:0)
可以通过添加class和setTimeout来实现fadeOut效果。让我解释。
例如:
$('.close-el')
.on('click', function(e) {
e.stopPropagation();
$(infobox.div_).addClass('is-closing');
setTimeout(function() {
infobox.close();
}, 700);
});
添加CSS类时,在css转换结束后关闭信息框
和CSS(sass)(。infoBox是保留类)
.infoBox {
&.is-closing {
transition: transform 400ms, opacity 400ms;
transform: translate3d(0, 30px, 0);
opacity: 0;
}
}
答案 5 :(得分:-1)
我不认为这是可能的,因为Google不提供动画选项。
尝试获取Dom元素也不起作用。 ib变量是google.maps.InfoWindow类,而不是DOM元素。由于没有公共接口来获取信息窗口的DOM元素,因此您将无法自行访问它。
如果您使用console.log(ib.get("id"))
,您会看到ID未定义。