html边框环绕一周动画,环绕式CSS边框动画

我正在尝试使用纯CSS获得类似环绕效果的边框动画。

现在我在做它的方式是:before和:after伪元素大小发生变化。一个用于顶部和右侧边框,一个用于底部和左侧边框。

但是,由于宽度和高度的差异,我得到了怪异的效果,因为每一侧花费的时间相等,但是由于宽度远大于高度,因此看起来速度要快得多。

在不事先知道div大小的情况下如何解决?

同样,也欢迎采用SCSS / vanilla CSS来获得相同动画的任何不同方法。

似乎我无法在SO上更改代码段的大小,但是如果您想玩转,这里是一个Codepen:https://codepen.io/lollobaldo2000/pen/KKPazNw?editors = 1100

* {

box-sizing: border-box;

}

body {

background: black;

}

.square {

background: black;

display: block;

width: 500px;

height: 200px;

position: absolute;

top: 50%;

left: 50%;

margin: -100px auto auto -250px;

}

.square:before, .square:after {

content: '';

width: 0%;

height: 0%;

position: absolute;

border: 1px solid #FB0;

animation-fill-mode: forwards;

}

.square:before {

left: 0;

top: 0;

border-bottom: 0;

border-left: 0;

animation: btm 2s ease-in forwards;

}

.square:after {

visibility: hidden;

right: 0;

bottom: 0;

border-top: 0;

border-right: 0;

animation: btm 2s 2s ease-out forwards;

}

@keyframes btm {

0% {

visibility: visible;

width: 0;

height: 0;

}

50% {

width: 100%;

height: 0;

}

100% {

width: 100%;

height: calc(100% - 1px);

visibility: visible;

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值