|
|
|
|
|
本文介紹如何使用CSS3實現(xiàn)圖片背景填充文字并做成動畫效果。
完整HTML代碼
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
div {
margin: auto;
width: 800px;
height: 300px;
line-height: 300px;
text-align: center;
font-size: 150px;
font-weight: bold;
color: transparent;
background: url(1.jpg);
-webkit-background-clip: text;
animation: animate 8s ease 500ms infinite;
}
/* 定義關鍵幀 */
@keyframes animate {
from {
background-size: 50%;
}
to {
background-size: 20%;
}
</style>
</head>
<body>
<div> 卡卡網(wǎng) </div>
<div> WebKaka </div>
</body>
</html>
代碼解釋
本實例代碼很少,理解起來比較容易。
HTML只有一個DIV
標簽。
CSS有3個屬性起關鍵作用:
1、-webkit-background-clip: text;
該屬性作用是把圖片背景裁剪到文字。
2、color: transparent;
這句也很重要,文字顏色設為透明,才能使得文字顯示圖片背景。
3、animation
動畫屬性,它能讓文字背景動起來。