自己建的網(wǎng)站可以用筆記本做服務(wù)器嗎sem專員
前言:這是一個(gè)混合屬性,作用是將兩個(gè)顏色混合生成一個(gè)新顏色??梢詫⒁曨l和文字相融合,產(chǎn)生動(dòng)態(tài)文字效果。
效果
實(shí)現(xiàn)代碼?
<!DOCTYPE html>
<html lang="en"><head><meta charset="utf-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><metaname="viewport"content="initial-scale=1.0, user-scalable=no, width=device-width"/><title>document</title><style>body {background: #000;}video {width: 100%;}.txt {font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande","Lucida Sans", Arial, sans-serif;color: #000;font-size: 10em;font-weight: bold;position: absolute;inset: 0;background: #fff;display: flex;justify-content: center;align-items: center;mix-blend-mode: screen;}</style></head><body><div class="box"><video src="./demo.mp4" autoplay muted></video><div class="txt">黑神話:悟空</div></div><script></script></body>
</html>