求一个网页连接文字的特效,谢谢!

来源:百度知道 编辑:UC知道 时间:2024/06/04 02:12:50
当鼠标移到链接文字上时,链接文字就会变幻抖动,具体效果看这个网页http://hi.baidu.com/hopeyard/blog/index/1

以下是他的样式,你可以新建一个样式文件然后连接,或者直接写到网页中去

/链接文字移动
A { text-decoration: NONE; color: #28C7C7}
A:hover { position: relative; left:1px; top:1px; }

//去掉链接字体的下划线
A { text-decoration: NONE; color: #28C7C7}
A:hover {border-bottom:1px dashed #28C7C7}

//去掉链接字体的下划线
a:link{text-decoration:none}
a:hover{text-decoration:none}
a:visited{text-decoration:none}

//鼠标放在链接字体上的时候,链接字体变粗,
A { text-decoration: NONE; color}
A:hover {font-weight: bold;color}