本文介绍: 边框外面的线是会环绕动起来的,代码简单效果很酷哦<div></div>html,body { height:100%; backgroundcolor:#000;}div { width:200px; height:200px; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); border:1px solid #eee;}div::after,…

 边框外面的线是会环绕动起来的,代码简单效果很酷

<div&gt;</div&gt;
html,body {
	height:100%;
	background-color:#000;
}
div {
	width:200px;
	height:200px;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	border:1px solid #eee;
}
div::after,div::before {
	/* 固定div下 */
  z-index:-1;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	/* 撑开一点大小 */
  margin:-5%;
	box-shadow:inset 0px 0px 2px #fff;
	animation:clipMe 8s linear infinite;
}
div::before {
	content:"";
}
div::after {
	content:"";
	/* 提前运动4s */
  animation-delay:-4s;
}
@keyframes clipMe {
	0%,100% {
	clip:rect(0px,220.0px,2px,0px);
}
25% {
	clip:rect(0px,2px,220.0px,0px);
}
50% {
	clip:rect(218.0px,220.0px,220.0px,0px);
}
75% {
	clip:rect(0px,220.0px,220.0px,218.0px);
}
}

原文地址:https://blog.csdn.net/Teemo_shape/article/details/124120128

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_38750.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注