技術頻道導航
HTML/CSS
.NET技術
IIS技術
PHP技術
Js/JQuery
Photoshop
Fireworks
服務器技術
操作系統(tǒng)
網(wǎng)站運營

贊助商

分類目錄

贊助商

最新文章

搜索

CSS3 圖片背景填充文字并實現(xiàn)動畫效果

作者:admin    時間:2022-3-17 17:36:29    瀏覽:

本文介紹如何使用CSS3實現(xiàn)圖片背景填充文字并做成動畫效果。

CSS3文字動畫效果

demodownload

完整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 動畫屬性,它能讓文字背景動起來。

相關文章

x
  • 站長推薦
/* 左側顯示文章內容目錄 */