开发小技巧用HTML和CSS在文本上创建液体填充动画效果
Posted 信息网络工程研究中心
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了开发小技巧用HTML和CSS在文本上创建液体填充动画效果相关的知识,希望对你有一定的参考价值。
来源 | web前端开发公众号
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0" />
<title>用HTML和CSS在文本上如何创建液体填充动画效果?</title>
</head>
<body>
<center>
<h1>WEB前端开发公众号</h1>
</center>
</body>
</html>
<style>
body {
margin: 0;
padding: 0;
}
h1 {
margin: 200px 0;
padding: 0;
font-size: 80px;
position: relative;
color:green;
}
h1:before {
content: "WEB前端开发公众号";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color:white;
overflow: hidden;
animation: animate 6s infinite;
}
@keyframes animate {
0% {
height: 25%;
}
25% {
height: 50%;
}
50% {
height: 65%;
}
75% {
height: 40%;
}
100% {
height: 25%;
}
}
</style>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content=
"width=device-width, initial-scale=1.0" />
<title>
用HTML和CSS在文本上如何创建液体填充动画效果?
</title>
<style>
body {
margin: 0;
padding: 0;
}
h1 {
margin: 200px 0;
padding: 0;
font-size: 80px;
position: relative;
color:green;
}
h1:before {
content: "WEB前端开发公众号";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color:white;
overflow: hidden;
animation: animate 6s infinite;
}
@keyframes animate {
0% {
height: 25%;
}
25% {
height: 50%;
}
50% {
height: 65%;
}
75% {
height: 40%;
}
100% {
height: 25%;
}
}
</style>
</head>
<body>
<center>
<h1>WEB前端开发公众号</h1>
</center>
</body>
</html>
免责申明:本站所有内容均来自网络,我们对文中观点保持中立,对所包含内容的准确性,可靠性或者完整性不提供任何明示或暗示的保证,请仅作参考。若有侵权,请联系删除。
以上是关于开发小技巧用HTML和CSS在文本上创建液体填充动画效果的主要内容,如果未能解决你的问题,请参考以下文章