求一段html的代码,有关地图上的链接的。
就是像百度地图一样,地图上标示的文字是可以点击的,鼠标放上去文字会变色,点击后会进入下一个网页,跪求谢谢!...
就是像百度地图一样,地图上标示的文字是可以点击的,鼠标放上去文字会变色,点击后会进入下一个网页,跪求 谢谢!
展开
展开全部
CSS:
<style type="text/css">
<!--
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #990000;
}
a:hover {
text-decoration: none;
color: #0000FF;
}
a:active {
text-decoration: none;
}
-->
</style>
内容:
<div style=" background-color:#34CCFE;width:200px;height:100px; text-align:center; padding:10px;" onmouseover="this.style.backgroundColor='#66FFCC'"
onmouseout="this.style.backgroundColor='#34CCFE'"><a href=“china.html”>链接</a></div>
通过事件可以改变字体所在区域的背景颜色,通过对a链接的属性进行设置可以改变字体在鼠标悬停,点击等时的颜色。
<style type="text/css">
<!--
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #990000;
}
a:hover {
text-decoration: none;
color: #0000FF;
}
a:active {
text-decoration: none;
}
-->
</style>
内容:
<div style=" background-color:#34CCFE;width:200px;height:100px; text-align:center; padding:10px;" onmouseover="this.style.backgroundColor='#66FFCC'"
onmouseout="this.style.backgroundColor='#34CCFE'"><a href=“china.html”>链接</a></div>
通过事件可以改变字体所在区域的背景颜色,通过对a链接的属性进行设置可以改变字体在鼠标悬停,点击等时的颜色。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询