1 Star 0 Fork 19

xunmn/blog网页特效源码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
SVG绘制文字.html 2.08 KB
一键复制 编辑 原始数据 按行查看 历史
北极光之夜 提交于 2021-09-27 22:19 . 'before-code'
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>北极光之夜</title>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
main{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(30, 49, 71);
}
.txt{
font-family: 'fangsong';
font-weight: 900;
font-size: 80px;
letter-spacing: 3px;
fill: transparent;
stroke: url("#yanse");
stroke-width: 1.5px;
stroke-dasharray: 625;
stroke-dashoffset: 625;
animation: draw 5s linear infinite;
}
@keyframes draw{
0%,5%{
stroke-dasharray: 625;
stroke-dashoffset: 625;
}
40%,60%{
stroke-dasharray: 625;
stroke-dashoffset: 0;
}
100%{
stroke-dasharray: 625;
stroke-dashoffset: 625;
}
}
</style>
</head>
<body>
<main>
<svg width="500" height="200">
<defs>
<linearGradient id="yanse">
<stop offset="33%" stop-color="#00BFFF">
<animate attributeName="stop-color"
from="#00BFFF" to="#FF8C00" dur="5s" repeatCount="indefinite"></animate>
</stop>
<stop offset="66%" stop-color="#00FFFF"></stop>
<stop offset="100%" stop-color="#00FA9A">
<animate attributeName="stop-color"
from="#00FA9AF" to="#FF00FF" dur="5s" repeatCount="indefinite"></animate>
</stop>
</linearGradient>
</defs>
<text x="30" y="120" class="txt">北极光之夜。</text>
</svg>
</main>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xunmn/blog_1.git
git@gitee.com:xunmn/blog_1.git
xunmn
blog_1
blog网页特效源码
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385