我想在div下面创建一个箭头:
https://hpneo.github.io/gmaps/examples/overlays.html
我正在使用相同的代码,我从源代码中获取了css:
.overlay{
display:block;
text-align:center;
color:#fff;
font-size:60px;
line-height:80px;
opacity:0.8;
background:#4477aa;
border:solid 3px #336699;
border-radius:4px;
box-shadow:2px 2px 10px #333;
text-shadow:1px 1px 1px #666;
padding:0 4px;
}
.overlay_arrow{
left:50%;
margin-left:-16px;
width:0;
height:0;
position:absolute;
}
.overlay_arrow.above{
bottom:-15px;
border-left:16px solid transparent;
border-right:16px solid transparent;
border-top:16px solid #336699;
}
.overlay_arrow.below{
top:-15px;
border-left:16px solid transparent;
border-right:16px solid transparent;
border-bottom:16px solid #336699;
}
所以我注意到我需要一个带有overlay_arrow类的div,所以我对gmaps代码进行了一些修改:
map.drawOverlay({
lat: destinations[i].Latitude,
lng: destinations[i].Longitude,
content: '<div class="overlay" id="' + destinations[i].Id + '">' + destinations[i].Name + '<div class="overlay_arrow"></div></div>'
});
但div下仍然没有箭头。
我在这里缺少什么?
答案 0 :(得分:2)
看起来您需要将上面或下面的类添加到overlay_arrow div。目前尚未设置箭头样式。
例如:
function Submit()
{
var form = $('#upload');
var formData = new FormData(form);
$.ajax({
url: URLs,
data: formData,
cache:false,
contentType: false,
processData: false,
crossDomain: true,
type:"POST",
dataType:'jsonp',
success: function(msg){
alert(msg["foo"]);
}
});
}