所以我一直在努力为一些不同颜色的文字制作挥动动画,因为我正在使用<clipPath>
和-webkit-clip-path
。 .holder
div包含两个相同的文本,一个为白色,一个为灰色,clip-path
应用于后者。
问题是我需要<path>
坐标与文本大小成比例。这是fiddle demo。
我尝试设置viewBox="0 0 100 100"
,但不起作用。
我也尝试过使用clipPathUnits="objectBoundingBox"
,但在这种情况下似乎没有用,我猜是因为文字是display:inline
。
现在,如果这些看起来太复杂而无法分析,并且您理解基本概念并且愿意按照自己的方式去做,那就去吧,我所以对此提出建议。< / p>
另外,我试图避免使用JavaScript来执行此操作,但如果必须,请继续,没问题:)
以下是原始代码:
<div class="container">
<div class="holder">
<div class="back">Text</div>
<div class="front">Text</div>
<svg viewBox="0 0 100 100" preserveAspectRatio="none">
<clipPath id="path">
<path fill="transparent" stroke="black" >
<animate
attributeName="d"
attributeType="XML"
values="M 0 50 Q 25 60, 50 50 T 100 50 L 100 100 L 0 100 Z;M 0 50 Q 25 40, 50 50 T 100 50 L 100 100 L 0 100 Z;M 0 50 Q 25 60, 50 50 T 100 50 L 100 100 L 0 100 Z"
begin="0s"
dur="1s"
fill="freeze"
repeatCount="indefinite"
direction="alternate" />
</path>
</clipPath>
</svg>
</div>
</div>
<animate>
元素只是在两条路径之间交替,以产生“波浪”效果。
.container {
display:inline-block;
padding:2.5% 5%;
background:lightcoral;
}
.holder {
position:relative;
text-align:center;
font:6em impact;
color:white;
text-transform:uppercase;
}
.front {
position:absolute;
top:0;
color:gray;
opacity:.3;
-webkit-clip-path:url(#path);
}
svg {
position:absolute;
width:100%;
height:100%;
left:0;
top:0;
}
这是我的css,不是很完美,随意撕开它!
提前致谢!
答案 0 :(得分:6)
如果你将clipPath切换到使用边界框单位,我相信你会有更好的运气:
<clipPath clipPathUnits="objectBoundingBox" ... >
然后,所有剪辑路径坐标应定义在0..1。
范围内http://www.w3.org/TR/SVG/masking.html#EstablishingANewClippingPath