【问题标题】:how can i animate svg svg stroke line animation from left to right?我如何从左到右为 svg svg 笔画线动画制作动画?
【发布时间】:2018-09-29 11:45:54
【问题描述】:

svg 中风动画从右开始,但我想从左到右描边该动画形式。动画中风后保持立场。可以在动画期间添加任何动画css类,如fadeIn

.cls-1 {
  fill: none;
  stroke: #00a139;
  stroke-miterlimit: 10;
}

svg {
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background: #1e1e1e;
}

#Path_70 {
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: dash 5s linear forwards;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
<svg id="ex6" xmlns="http://www.w3.org/2000/svg" viewBox="2080.831 303.745 1673.195 406.547">
  <defs>
  </defs>
  <g id="Group_191" data-name="Group 191" transform="translate(2393 93)">
    <path id="Path_70" data-name="Path 70" class="cls-1" d="M1700.935,169.155s-227.809,11.434-421.654,140.759c-174.322,116.314-275.519,110.6-373.713,41.794C786.235,268.022,551.495-57.262,63.3,9.47" transform="translate(-361.422 210.687)"/>
  </g>
</svg>

【问题讨论】:

标签: css svg css-animations svg-animate


【解决方案1】:

您可以将stroke-dashoffset 设为负值:

.cls-1 {
  fill: none;
  stroke: #00a139;
  stroke-miterlimit: 10;
}

svg {
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background: #1e1e1e;
}

#Path_70 {
  stroke-dasharray: 1800;
  stroke-dashoffset: -1800;
  animation: dash 5s linear forwards;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
<svg id="ex6" xmlns="http://www.w3.org/2000/svg" viewBox="2080.831 303.745 1673.195 406.547">
  <defs>
  </defs>
  <g id="Group_191" data-name="Group 191" transform="translate(2393 93)">
    <path id="Path_70" data-name="Path 70" class="cls-1" d="M1700.935,169.155s-227.809,11.434-421.654,140.759c-174.322,116.314-275.519,110.6-373.713,41.794C786.235,268.022,551.495-57.262,63.3,9.47" transform="translate(-361.422 210.687)"/>
  </g>
</svg>

【讨论】:

    猜你喜欢
    • 2016-08-28
    • 1970-01-01
    • 1970-01-01
    • 2021-12-12
    • 2019-11-04
    • 1970-01-01
    • 1970-01-01
    • 2017-06-19
    • 1970-01-01
    相关资源
    最近更新 更多