CSS3文字動態填充背景效果

admin發表於2018-07-17

分享一段程式碼例項,它利用css3實現了文字動態填充效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
* {
  margin: 0px;
  padding: 0px;
}
.box-with-text {
  background-image: linear-gradient(crimson 50%, white 50%);
  background-repeat: repeat;
  background-position: 0 0;
  background-size: 100% 50px;
  text-fill-color: transparent;
  background-clip: text;
  animation: stripes 2s linear infinite;
}
 
@keyframes stripes {
  100% {
    background-position: 0 -50px;
  }
}
body {
  overflow: hidden;
  background: #000;
  color: #FFF;
}
 
.box-with-text {
  position: absolute;
  top: 50%;
  left: 50%;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  font: bold 26vmax/.8 Open Sans, Impact;
  transform: translateX(-50%) translateY(-50%);
}
</style>
</head>
<body>
  <div class="box-with-text">螞蟻部落</div>
</body>
</html>

上述程式碼實現了預期效果,更多內容參閱相關連結。

相關文章