图标按钮css特效 跑马灯效果(会转会发光的按钮)

这种按钮比较简单,主要就是结合css3伪类选择器before和after以及定位实现的,阴影是通过hover效果划过实现的
主要效果为:
这是最终效果

主要代码为:

html代码:
	<body>
		<a href="#">按钮1</a>
		<a href="#">按钮1</a>
		<a href="#">按钮1</a>
	</body>
css代码:
body{
	display:flex;
	flex-direction:column;
	align-items:center;
	background:#14213d;
	min-height:100vh;
}
a{
	position:relative;
	padding:10px 30px;
	margin:45px 0;
	color:#b7a3e0;
	text-decoration:none;
	font-size:20px;
	transition:0.5s;
	overflow:hidden;
	-webkit-box-reflect: below 1px linear-gradient(transparent,#0003);
}
a:hover{
	background:#b7a3e0;
	color:#111;
	box-shadow:0 0 50px #b7a3e0;
	transition-delay:0.5s;
}
a::before{
   content: '';
   position:absolute;
   top: 0;
   right: 0;
   width: 10px;
   height: 10px;
   border-top: 2px solid #B7A3E0;
   border-right: 2px solid #B7A3E0;
   transition: 0.5s;
   transition-delay: 0.25s;
}
a:hover::before{
    width: 100%;
    height: 100%;
    transition-delay: 0s;
}
a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #B7A3E0;
    border-left: 2px solid #B7A3E0;
    transition: 0.5s;
    transition-delay: 0.25s;
}
a:hover::after{
    width: 100%;
    height: 100%;
    transition-delay: 0s;
}
a:nth-child(1){
    filter: hue-rotate(100deg); //css滤镜
}
a:nth-child(3){
    filter: hue-rotate(200deg);
}

写完效果已经实现了,欧耶!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

是小许同学吖

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值