wophost 发表于 2019-4-2 17:12

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:}

戴鹏1314 发表于 2019-4-2 17:42

没反应啊,就辛巴博客欢迎您,几个黑字

sphinx7 发表于 2019-4-2 17:54

貌似不错啊,多谢分享了

Oohuo 发表于 2019-4-2 17:56

就是一行黑字??

wophost 发表于 2019-4-2 18:05

Oohuo 发表于 2019-4-2 17:56
就是一行黑字??

没问题啊我上传了一个html例子你看下

wophost 发表于 2019-4-2 18:07

戴鹏1314 发表于 2019-4-2 17:42
没反应啊,就辛巴博客欢迎您,几个黑字

ie好像不可以 你用谷歌 Firefox 试一试我这里没问题

yqesl1 发表于 2019-4-2 19:48

特别喜欢,svg

bdcpc 发表于 2019-4-4 08:44

下载下来学习下!

xiehaipeng 发表于 2020-9-18 10:00

貌似不错啊

15278066219 发表于 2020-9-18 11:36

可以可以 值得学习{:301_993:}
页: [1] 2
查看完整版本: HTML5 SVG+CSS3霓虹灯文字边框动画特效