Css 从左到右设置填充SVG云图标的动画

Css 从左到右设置填充SVG云图标的动画,css,animation,svg,Css,Animation,Svg,我正在尝试使用SVG云从左到右(有点像进度条)设置填充云的动画。这是云: %svg{:height => "80", :version => "1.1", :viewbox => "0 0 120 80", :width => "120", :xmlns => "http://www.w3.org/2000/svg", "xmlns:figma" => "http://www.figma.com/figma/ns", "xmlns:xlink" =>

我正在尝试使用SVG云从左到右(有点像进度条)设置填充云的动画。这是云:

  %svg{:height => "80", :version => "1.1", :viewbox => "0 0 120 80", :width => "120", :xmlns => "http://www.w3.org/2000/svg", "xmlns:figma" => "http://www.figma.com/figma/ns", "xmlns:xlink" => "http://www.w3.org/1999/xlink"}
    %title Vector
    %g#Canvas{"figma:type" => "canvas", :transform => "translate(1558 -2264)"}
      %g#Vector{"figma:type" => "vector", :style => "mix-blend-mode:normal;"}
        %use{:style => "mix-blend-mode:normal;", :transform => "translate(-1558 2264)", "xlink:href" => "#path0_fill"}
        %use{:fill => "#FFFFFF", :style => "mix-blend-mode:normal;", :transform => "translate(-1558 2264)", "xlink:href" => "#path0_fill"}
    %defs
      %path#path0_fill{:d => "M 96.775 30.175C 93.375 12.975 78.2 0 60 
我试着创建一个动画渐变,但没有真正起作用。有人知道我如何为这个SVG制作一个从左到右填充给定时间的动画吗?我愿意使用CSS或JS来实现它

谢谢

更新

我相信我已经找到了答案,但是当页面加载时,一半的云被加载了

%svg{:height => "104", :version => "1.1", :viewbox => "0 0 144 104", :width => "144", :xmlns => "http://www.w3.org/2000/svg", "xmlns:figma" => "http://www.figma.com/figma/ns", "xmlns:xlink" => "http://www.w3.org/1999/xlink"}
  %g#Canvas{"figma:type" => "canvas", :transform => "translate(1570 -2256)"}
    %g#ic_cloud_48px{"figma:type" => "frame", :filter => "url(#filter0_d)", :style => "mix-blend-mode:normal;"}
      %g#Vector{"figma:type" => "vector", :style => "mix-blend-mode:normal;"}
        %use{:fill => "#ffffff", opacity: '1', :style => "mix-blend-mode:normal;", :transform => "translate(-1558 2264)", "xlink:href" => "#path0_fill"}
  %defs
    %lineargradient#half_grad{x1: 0}
      %stop{:offset => "50%", "stop-color" => "white"}
      %stop{:offset => "50%", "stop-opacity" => "0"}
      %animate{:attributename => "x1", :dur => "60s", :from => "-100%", :to => "100%", fill: "freeze"}

    %filter#filter0_d{"color-interpolation-filters" => "sRGB", :filterunits => "userSpaceOnUse", :height => "104", :width => "144", :x => "-1570", :y => "2256"}
      %feflood{"flood-opacity" => "0", :result => "BackgroundImageFix"}
      %desc type="dropShadow" x="0" y="4" size="12" spread="0" color="0,0.498652,0.660377,0.24" blend="normal"
      %fecolormatrix{:in => "SourceAlpha", :type => "matrix", :values => "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 0"}
      %feoffset{:dx => "0", :dy => "4"}
      %fegaussianblur{:stddeviation => "6"}
      %fecolormatrix{:type => "matrix", :values => "0 0 0 0 0 0 0 0 0 0.498652 0 0 0 0 0.660377 0 0 0 0.24 0"}
      %feblend{:in2 => "BackgroundImageFix", :mode => "normal", :result => "effect1_dropShadow"}
      %feblend{:in => "SourceGraphic", :in2 => "effect1_dropShadow", :mode => "normal", :result => "shape"}
    %path#path0_fill{fill: "url(#half_grad)", 'stroke-width' => "3", stroke: "white", :d => "M 96.775 30.175C 93.375 12.975 78.2 0 60 0C 45.55 0 33.025 8.2 26.75 20.175C 11.725 21.8 0 34.525 0 50C 0 66.575 13.425 80 30 80L 95 80C 108.8 80 120 68.8 120 55C 120 41.8 109.725 31.1 96.775 30.175Z"}

您的错误在于线性渐变以及如何设置其动画

%lineargradient#half_grad{x1: 0}
  %stop{:offset => "50%", "stop-color" => "white"}
  %stop{:offset => "50%", "stop-opacity" => "0"}
  %animate{:attributename => "x1", :dur => "60s", :from => "-100%", :to => "100%", fill: "freeze"}
您正在为渐变的
x1
设置动画,最大为100%,但渐变被定义为在中间改变(50%)。如果希望50%的颜色变化与云的右侧一致,则应设置高达200%的动画

例如,以下(可能)是您想要的:

%animate{:attributename => "x1", :dur => "60s", :from => "0%", :to => "200%", fill: "freeze"}

谢谢我试图做的是从左到右慢慢地用白色填充SVG,因此偏移量为50%。是否应该将偏移设置为其他值以实现此效果?50%应该可以。这只是意味着,要使颜色切换在右侧(100%)完成,您需要
x1
将动画设置为
200%