Loading

css实现背景视频文字

代码实现如下:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Carver玩转css</title>
    <style>
        .txt {
            font-size: 40px;
            position: absolute;
            inset: 0;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            mix-blend-mode: screen;
        }
    </style>
</head>
<body>
<div>
    <video src="https://xxx.mp4" autoplay muted loop></video>
    <div class="txt">Tea</div>
</div>
</body>
</html>

 

posted @ 2023-08-17 23:29  Carvers  阅读(58)  评论(0)    收藏  举报