CSS3環繞動態邊框效果

antzone發表於2017-03-06

分享一段程式碼例項,它實現了環繞動態邊框效果。

邊框不是完整的,會一直環繞矩形框。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
@keyframes clipMe{
  0%,100%{clip:rect(0,340px,2px,0)}
  25%{clip:rect(0,2px,340px,0)}
  50%{clip:rect(338px,340px,340px,0)}
  75%{clip:rect(0,340px,340px,338px)}
}
@keyframes clipMe1{
  0%,100%{clip:rect(338px,340px,340px,0)}
  25%{clip:rect(0,340px,340px,338px)}
  50%{clip:rect(0,340px,2px,0)}
  75%{clip:rect(0,2px,340px,0)}
}
.box{
  background-color:#f1f1f1;
  width:300px;
  height:300px;
  margin:100px auto;
  position:relative;
  z-index:3;
}
.box::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  right:0;
  border:2px solid red;
  margin:-20px;
  z-index:-1;
  -webkit-animation:clipMe 8s linear infinite;
  -o-animation:clipMe 8s linear infinite;
  animation:clipMe 8s linear infinite;
}
.box::after{
  content: '';
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  right:0;
  border:2px solid red;
  margin:-20px;
  z-index:-1;
  -webkit-animation:clipMe1 8s linear infinite;
  -o-animation:clipMe1 8s linear infinite;
  animation:clipMe1 8s linear infinite;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>

上面的程式碼實現了我們的要求,更多內容可以參閱相關閱讀。

相關閱讀:

(1).@keyframes可以參閱CSS3 @keyframes一章節。

(2).clip可以參閱CSS3 clip屬性一章節。

(3).animation可以參閱CSS3 animation一章節。

相關文章