网页设计中,怎样制作出链接的内容鼠标滑过就会动的那种效果
发布网友
发布时间:2022-04-29 15:00
我来回答
共3个回答
热心网友
时间:2022-05-13 10:04
你是说文字下陷那种效果?
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>网页特效|Linkweb.cn/Js|---超链接陷下效果</title>
</head>
<body>
<style>
A:link,A:visited ,A:active {TEXT-DECORATION: none}
A:hover {text-decoration : none; position : relative; top : 1px; left : 1px}
</style>
<A HREF="http://linkweb.cn/js">来来,都到这里来……</A>
</body>
</html>
热心网友
时间:2022-05-13 11:22
把这几句写到css里面就好了,
a:link {color: #515050;text-decoration: none;}
a:visited {color: #515050;text-decoration: none;}
a:hover {color: #515050;text-decoration: underline;}
(color: #515050)这个是字体颜色你可以改为你所需要的颜色,
热心网友
时间:2022-05-13 12:57
从网上找个模块 添加进去 最方便了