代码拉取完成,页面将自动刷新
同步操作将从 北极光之夜/blog网页特效源码 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<!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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。