炫酷的文字背景

利用一些CSS3属性,可以创造很酷的效果。

知识点

-webkit-background-clip: text;

示例

<div>
    <div class="mask"></div>
    <p>Nooldey</p>
</div>
$img: "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1493353832&di=c063b6b9c89082e96ffee0766112ffec&imgtype=jpg&er=1&src=http%3A%2F%2Fpic2016.5442.com%3A82%2F2016%2F0111%2F07%2F3.jpg%21960.jpg";


div {
    position: relative;
    margin: 0 auto;
    width: 960px;
    height: 600px;
}

.mask {
    width: 100%;
    height: 100%;
    background-size: cover;
    filter: blur(10px);
    transition: .3s;
}

p {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
    font-size: 180px;
    font-weight: bold;
    background: url($img) no-repeat center center;
    background-size: cover;
    text-shaodw: 2px 2px 2px 2px #fff;
    -webkit-background-clip: text;
    color: transparent;
}

@keyframes move {
    0% {
        line-height: 20px;
        font-size: 20px;
    }
    100% {
        line-height: 500px;
        font-size: 800px;
    }
}

效果图:

微信图片_20180411192001.png

NOOLDEY

本文作者:NOOLDEY

做一个诗情画意的码农,皮皮猪,我们走!

原文链接: http://zhuweisheng.com.cn/html/cool-text-background/

本站文章如无特殊声明均为原创,创作不易,转载请注明来源,谢谢!