美文网首页
SVG text Animation

SVG text Animation

作者: 康乐芳华 | 来源:发表于2020-05-09 16:17 被阅读0次

SVG text Animation

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<svg viewBox="0 0 960 300">
    <symbol id="s-text">
        <text text-anchor="middle" x="50%" y="80%">
          Lost Stars
        </text>
    </symbol>

    <g class = "g-ants">
        <use xlink:href="#s-text" class="text-copy"></use>
        <use xlink:href="#s-text" class="text-copy"></use>
        <use xlink:href="#s-text" class="text-copy"></use>
        <use xlink:href="#s-text" class="text-copy"></use>
        <use xlink:href="#s-text" class="text-copy"></use>
    </g>
</svg>
</body>
</html>
@import url(https://fonts.googleapis.com/css?family=Montserrat);

html, body{
  height: 100%;
  font-weight: 800;
}

body{
  background: #030321;
  font-family: Arial;
}

svg {
    display: block;
    font: 10.5em 'Montserrat';
    width: 960px;
    height: 300px;
    margin: 0 auto;
}

.text-copy {
    fill: none;
    stroke: white;
    stroke-dasharray: 6% 29%;
    stroke-width: 5px;
    stroke-dashoffset: 0%;
    animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1){
    stroke: #4D163D;
    animation-delay: -1;
}

.text-copy:nth-child(2){
    stroke: #840037;
    animation-delay: -2s;
}

.text-copy:nth-child(3){
    stroke: #BD0034;
    animation-delay: -3s;
}

.text-copy:nth-child(4){
    stroke: #BD0034;
    animation-delay: -4s;
}

.text-copy:nth-child(5){
    stroke: #FDB731;
    animation-delay: -5s;
}

@keyframes stroke-offset{
    100% {stroke-dashoffset: -35%;}
}

相关文章

  • SVG text Animation

    SVG text Animation

  • 资源

    SVG svg icon 对应git(node.js写的) svg animation study svg cs...

  • 链接收藏夹

    慕课网教程-走进SVG文字版 超级强大的SVG SMIL animation动画详解 SVG+JS path等值变...

  • svg中文字显示及常用样式设置

    前言 svg标签主要用于绘制图表,难免需要显示一些文字。svg中自有的文本标签text text svg中文字标签...

  • 动效 JS 知识备份

    1,animateplus CSS and SVG animation library 2,Dynamics.js...

  • 学学 SVG

    http://www.uisdc.com/tencent-svg-animation-design

  • Text Animation

  • SVG SMIL Animation

    目录[^1] 一、SVG SMIL Animation概览 1.1 SMIL是什么? 全称Synchronized...

  • SVG-Animation

    SVG动画有多牛?先看看吧,人家的 demo1资料 其实一开始我就想学学 这样的效果简单说一下实现吧,不想看可以直...

  • [Error]react-native-art-svg

    本文将纪录svg遇到的问题 SVG不可嵌套RN提供的UI组件 SVG不可嵌套RN提供的UI组件,例如:

网友评论

      本文标题:SVG text Animation

      本文链接:https://www.haomeiwen.com/subject/lmwknhtx.html