HTML5 SVG+CSS3霓虹灯文字边框动画特效
本帖最后由 wophost 于 2019-4-2 18:06 编辑Html部分:
<div id="svgBox">
<svg width="100%" height="100">
<text text-anchor="middle" x="50%" y="50%" class="text text-1">
辛巴博客欢迎您
</text>
<text text-anchor="middle" x="50%" y="50%" class="text text-2">
辛巴博客欢迎您
</text>
<text text-anchor="middle" x="50%" y="50%" class="text text-3">
辛巴博客欢迎您
</text>
<text text-anchor="middle" x="50%" y="50%" class="text text-4">
辛巴博客欢迎您
</text>
</svg>
</div>
CSS代码:#svgBox{ width:100%;
margin:100px auto;
}
.text{
font-size: 64px;
font-weight: bold;
text-transform: uppercase;
fill: none;
stroke-width: 2px;
stroke-dasharray: 90 310;
animation: stroke 6s infinite linear;
}
.text-1{
stroke: #3498db;
text-shadow: 0 0 5px #3498db;
animation-delay: -1.5s;
}
.text-2{
stroke: #f39c12;
text-shadow: 0 0 5px #f39c12;
animation-delay: -3s;
}
.text-3{
stroke: #e74c3c;
text-shadow: 0 0 5px #e74c3c;
animation-delay: -4.5s;
}
.text-4{
stroke: #9b59b6;
text-shadow: 0 0 5px #9b59b6;
animation-delay: -6s;
}
@keyframes stroke {
100% {
stroke-dashoffset: -400;
}
}
.svgText{
width:600px;
margin:0 auto;
}
.svgText h3{
font-size:18px;
color:#333;
line-height:2;
}
.svgText p{
font-size:16px;
color:#888;
line-height:2;
}
.svgText p a,.svgText p a:hover{
color:#01a6fc;
font-weight:600;
}
.svgText ul li{
font-size:16px;
color:#888;
line-height:2;
}
就不上效果图了,直接创建html复制过去就可以看到效果.觉得不错就给个免费评分吧!{:1_919:}{:1_919:}{:1_919:} 没反应啊,就辛巴博客欢迎您,几个黑字 貌似不错啊,多谢分享了 就是一行黑字?? Oohuo 发表于 2019-4-2 17:56
就是一行黑字??
没问题啊我上传了一个html例子你看下 戴鹏1314 发表于 2019-4-2 17:42
没反应啊,就辛巴博客欢迎您,几个黑字
ie好像不可以 你用谷歌 Firefox 试一试我这里没问题 特别喜欢,svg 下载下来学习下!
貌似不错啊 可以可以 值得学习{:301_993:}
页:
[1]
2