|
发表于 2017-5-4 11:21:16
|
显示全部楼层
交作业
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>超链接动画演示</title>
- <style type="text/css">
- body{
- margin-top: 333px;
- text-align: center;
- }
- span{
- color: red;
- font-size: 66px;
- font-family: "Comic Sans MS", cursive;
- }
- a{
- color: #FFF;
- font-size: 66px;
- text-decoration: none;
- font-family: "Comic Sans MS", cursive;
- transition: all 2.6s;
- }
- a:hover{
- color: #000;
- }
- </style>
- </head>
- <body>
- <span>此处有惊喜-->></span><a href="http://bbs.fishc.com/forum.php?mod=collection&action=view&ctid=539">HTML5-庖丁解牛</a>
- </body>
- </html>
复制代码 |
|