|
发表于 2017-9-18 23:02:56
|
显示全部楼层
本楼为最佳答案
在实现你需求基础上,稍微送你几个福利
代码包:
Ex4-鼠标悬停特效.zip
(18.4 KB, 下载次数: 2)
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <title>使用特效</title>
- <style>
- * {
- margin:0;
- padding:0;
- list-style:none;
- }
- .fishc {
- width: 220px;
- height: 220px;
- margin: 0 auto;
- background: no-repeat url("images/shenshou.png") left top;
- -webkit-background-size: 220px 220px;
- -moz-background-size: 220px 220px;
- background-size: 220px 220px;
- -webkit-border-radius: 110px;
- border-radius: 110px;
- -webkit-transition: -webkit-transform 2s ease-out;
- -moz-transition: -moz-transform 2s ease-out;
- -o-transition: -o-transform 2s ease-out;
- -ms-transition: -ms-transform 2s ease-out;
- border:5px solid blue;
- border-radius:50%;
- }
- .fishc:hover {
- -webkit-transform: rotateZ(360deg);
- -moz-transform: rotateZ(360deg);
- -o-transform: rotateZ(360deg);
- -ms-transform: rotateZ(360deg);
- transform: rotateZ(360deg);
- border:5px solid red;
- }
- </style>
- </head>
- <body>
- <div class="fishc"></div>
- </body>
- </html>
复制代码 |
|