<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CSS字体动画渐变效果</title>
<style>
body {
background: rgb(197, 196, 196);
margin: 0;
}
main {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.text {
background: url(https://i.giphy.com/media/3o6Ztb45EYezY9x9gQ/giphy.webp);
background-size: contain;
background-position: top left;
-webkit-background-clip: text;
color: transparent;
font-size: 10rem;
font-weight: bold;
font-family: sans-serif;
}
</style>
</head>
<body>
<main>
<div class="text">JICHUN29.CN</div>
</main>
</body>
</html>
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。