不二如是 发表于 2017-2-13 13:20:19

已有 10 人购买  本主题需向作者支付 2 鱼币 才能浏览 购买主题

shishunfu 发表于 2017-5-2 16:44:29


                a:link {        /*链接初始样式*/
                        font-size: 22px;
                        color: red;
                        text-decoration: none;
                               
                }
                a:visited{        /*链接访问后样式*/
                        font-size: 22px;
                        color: green;
                        text-decoration: none;
                }
                a:hover{        /*鼠标放到链接上样式*/
                        color: blue;
                        text-decoration: underline;
                }
                a:active{        /*链接被按下时样式*/
                        text-decoration: line-through;
                }
LoVe HAte   爱恨原则

零度非安全 发表于 2017-2-13 13:47:13

哥哥,你用的是什么 gif 录屏软件呀?

不二如是 发表于 2017-2-13 15:01:57

本帖最后由 不二如是 于 2017-2-13 15:04 编辑

零度非安全 发表于 2017-2-13 13:47
哥哥,你用的是什么 gif 录屏软件呀?

mac上的软件…

Win上我推荐用icecream screen recorder

零度非安全 发表于 2017-2-13 15:03:58

不二如是 发表于 2017-2-13 15:01
mac上的软件…

这句话好有杀伤力{:10_275:}

不二如是 发表于 2017-2-13 15:04:44

零度非安全 发表于 2017-2-13 15:03
这句话好有杀伤力

win上
icecream screen recorder
也不错哦

零度非安全 发表于 2017-2-13 15:37:43

不二如是 发表于 2017-2-13 15:04
win上
icecream screen recorder
也不错哦

哥哥,好大呀,有没有小点的款式

a540656809 发表于 2017-3-6 23:12:47

Сhover±hover

aswyamato1989 发表于 2017-7-25 07:41:11

学习一下!

你在意在便在 发表于 2019-11-3 11:36:10

不二,强无敌~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>超链接动画演示</title>
<style type="text/css">
body {
      text-align: center;
      margin-top:333px;
}
a {
      font-size: 55px;
      text-decoration: none;
      color:white;
      transition: all 1.9s;
      /* 淡入淡出 */
}
      a:hover{
                color:black;
      }
</style>
</head>
<body>
    <a href="http://bbs.fishc.com/forum-337-1.html" target="_thank">小天才养殖场,快来闯一闯</a>
</body>
</html>

suweixuan1998 发表于 2020-1-9 16:25:00

发现visited无法修改link中的font-size。
{:10_297:}

<!doctype html>
<html>
<head>
                <meta charset="utf-8">
                <title>超链接大全</title>
                <style type="text/css">
                a:link{
                                font-size: 93px;
                                color:#000;
                                font-family: "NSimSun";
                                text-decoration: none;
                }
                a:visited{      /*链接访问后样式*/
                        font-size: 22px;
                        color: green;
                        text-decoration: none;}
                a:hover{
                        font-size: 66px;
                  color: #6F6;
                  font-family: "HeiTi";
                  text-decoration: overline;
            }
                        a:active{
                        font-size: 100px;
                  color: #6F6;
                            text-decoration: line-through;
}
                </style>
</head>
<body>
                <div>
                <a href="http://bbs.fishc.com/forum-33-1.html" target="_blank" title="无敌吹水阁">吹水带来思想的碰撞
                ,凡开卷有益</a>
                </div>


</body>

</html>
页: [1]
查看完整版本: 超链接样式大全