首页 > 其他 > 详细

鼠标移入时闪闪发光的效果

时间:2017-07-02 09:19:14      阅读:214      评论:0      收藏:0      [点我收藏+]
<!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="#">
				<span></span>
			</a>
		</li>
		<li>
			<a href="#">
				<span></span>
			</a>
		</li>
		<li>
			<a href="#">
				<span></span>
			</a>
		</li>
		<li>
			<a href="#">
				<span></span>
			</a>
		</li>
	</ul>

</div>
	
</body>
</html>

鼠标移入时闪闪发光的效果

原文:http://www.cnblogs.com/wwjm/p/7105051.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!