我正在使用此示例代码在 Google 地图上叠加某些内容。
<!DOCTYPE HTML>
<html>
<head>
<title>Google Map Test</title>
<style>
html, body {
margin: 0;
padding: 0;
font-family: Helvetica, sans-serif, Arial;
}
.txt {
position: absolute;
top: 100px;
left: 150px;
padding: 30px 50px;
text-align: center;
font-size: 13px;
font-weight: bold;
z-index: 99;
background-color: #fff;
border: 1px solid #ddd;
}
</style>
</head>
<body>
<div>
<iframe src="http://www.apps-tube.com/ip-lookup/google-map.php?xy=14.4673541,78.8241339" scrolling="no" frameborder="no" id="gmap" style="width:746px;height:380px;"></iframe>
</div>
<div class="txt">Country name</div>
</body>
</html>
我得到这个结果[自动文本blurred
]
但我想要没有blur effect
像下图这样的结果。
请帮我消除这种模糊效果。访问此链接以获取示例页面。
注意:我使用的是谷歌浏览器。