我试图使用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"}
答案 0 :(得分:0)
您的错误在于线性渐变以及如何为其设置动画。
%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%。
IE中。以下是(可能)你想要的:
%animate{:attributename => "x1", :dur => "60s", :from => "0%", :to => "200%", fill: "freeze"}