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

贊助商

分類目錄

贊助商

最新文章

搜索

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

作者:admin    時(shí)間:2022-3-17 17:36:29    瀏覽:

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

CSS3文字動(dòng)畫效果

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;
    }
    /* 定義關(guān)鍵幀 */
    
    @keyframes animate {
        from {
            background-size: 50%;
        }
        to {
            background-size: 20%;
        }
    </style>
</head>
 
<body>
    <div> 卡卡網(wǎng) </div>
    <div> WebKaka </div>
</body>
 
</html>

代碼解釋

本實(shí)例代碼很少,理解起來比較容易。

HTML只有一個(gè)DIV標(biāo)簽。

CSS有3個(gè)屬性起關(guān)鍵作用:

1、-webkit-background-clip: text; 該屬性作用是把圖片背景裁剪到文字。

2、color: transparent; 這句也很重要,文字顏色設(shè)為透明,才能使得文字顯示圖片背景。

3、animation 動(dòng)畫屬性,它能讓文字背景動(dòng)起來。

相關(guān)文章

x
  • 站長推薦
/* 左側(cè)顯示文章內(nèi)容目錄 */