首页 > 代码库 > 鼠标移入时闪闪发光的效果
鼠标移入时闪闪发光的效果
<!doctype html> [code=html,html 代码,true]<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> *{ margin: 0; padding: 0; list-style: none; } .box{ margin: 100px; } li{ position: relative; float: left; width: 50px; height: 50px; margin-right: 100px; } span{ width: 100px; height: 100px; margin: 12px; display: block; border-radius: 50%; background: -webkit-linear-gradient(red, blue); transition:1s all ease; } li:hover span{ transform:rotateZ(360deg); } @keyframes warn { 0% { transform: scale(1); opacity: 0.8; } 20% { transform: scale(1); opacity: 0.6; } 40% { transform: scale(1.2); opacity: 0.4; } 60% { transform: scale(1.4); opacity: 0.2; } 80% { transform: scale(1.6); opacity: 0.1; } 100% { transform: scale(1.8); opacity: 0.0; } } a:before{ border: 12px solid #A8E957; content:‘‘; position: absolute; width: 100px; height: 100px; border-radius: 62px; opacity: 0; } li:hover a:before{animation: warn 1s ease-out infinite;} </style> </head> <body> <div class="box"> <ul> <li> <a href="http://www.mamicode.com/#"> <span></span> </a> </li> <li> <a href="http://www.mamicode.com/#"> <span></span> </a> </li> <li> <a href="http://www.mamicode.com/#"> <span></span> </a> </li> <li> <a href="http://www.mamicode.com/#"> <span></span> </a> </li> </ul> </div> </body> </html>
鼠标移入时闪闪发光的效果
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。