首页 - 图片 - 汽车 - 百科 - 旅游 - 美食 - 英语 - IT资讯 - 留学 - 移民 - 电影 - 下载 - 站点地图

您的位置: 易飞网 >> 资讯 >> 站长学院 >> 网页特效 >> 查看资讯

鼠标经过时链接文字的特殊显示

说明:把鼠标放到连接上试试!

效果:

点击我试试!网页学院

代码中的style中间的代码加到网页里即可

 

代码:

<html>

<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>连接特效---鼠标经过时链接文字的特殊显示</title>
<style>
A {
 FILTER: progid:dximagetransform.microsoft.gradientwipe(duration=1); BEHAVIOR: url(images/xs.htc); CURSOR: hand; HEIGHT: 1px; TEXT-DECORATION: none
}
A:link {
 COLOR: #3d3525
}
A:visited {
 COLOR: #3d3525
}
A:hover {
 COLOR: #ede8e0
}
A:active {
 COLOR: #3d3525
}
</style>
</head>

<body bgcolor="#000000">


<p><a target="_blank" href="#">
点击我试试!网页学院|http://www.idchonor.com/html</a></p>


<p><font color="#FFFFFF">代码中的style中间的代码加到网页里即可</font></p>


</body>
</html>