`

CSS3 发光边框

阅读更多
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>CSS3 发光边框</title>
<link rel="stylesheet" href="base.css" />
<style type="text/css">
body{
	background: #f0f0f0
}
.light{
	background: #fff;
	width: 180px;
	height: 180px;
	margin: 100px auto;
	position: relative;
	text-align: center;
	color: #333;
	transform:translate3d(0,0,0);

}
.light-inner{
	padding: 60px 30px 0;
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	text-align: center;
	transition: background 0.35s;
	backface-visibility: hidden;
}
.light-inner:before, .light-inner:after{
	display: block;
	content: "";
	position: absolute;
	left: 30px;
	top: 30px;
	right: 30px;
	bottom: 30px;
	border: 1px solid #fff;
	opacity: 0;
	transition: opacity 0.35s, transform 0.35s;
}
.light-inner:before{
	border-left: 0;
	border-right: 0;
	transform:scaleX(0);
}
.light-inner:after{
	border-top: 0;
	border-bottom: 0;
	transform: scaleY(0);
}
.light:hover .light-inner{
	background: #458fd2
}
.light:hover .light-inner:before, .light:hover .light-inner:after{
	opacity: 1;
	transform: scale3d(1,1,1);
}

.light-inner p{
	transition: opacity .35s, transform 0.35s;
	transform: translate3d(0,20px,0);
	color: #fff;
	opacity: 0;
	line-height: 30px;
}
.light:hover .light-inner p{
	transform: translate3d(0,0,0);
	opacity: 1;
}
</style>
</head>
<body>
	<div class="light">
		<img src="aaa.jpg">
		<div class="light-inner">
			<p>onestopweb</p>
			<p>一站式共享网络</p>
		</div>
	</div>
</body>
</html>

 

效果图:

 

 

 

 

 

 

 

 

 

 

 

  • 大小: 69.7 KB
1
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics