xChannelSelector - SVG: Scalable Vector Graphics 编辑
The xChannelSelector
attribute indicates which color channel from in2
to use to displace the pixels in in
along the x-axis.
Only one element is using this attribute: <feDisplacementMap>
html, body, svg {
height: 100%;
}
<svg viewBox="0 0 440 160" xmlns="http://www.w3.org/2000/svg">
<filter id="displacementFilter">
<feImage xlink:href="https://mdn.mozillademos.org/files/12668/MDN.svg"
x="0" y="0" width="100%" height="100%" result="abc"/>
<feDisplacementMap in2="abc" in="SourceGraphic"
scale="30" xChannelSelector="R"/>
</filter>
<filter id="displacementFilter2">
<feImage xlink:href="https://mdn.mozillademos.org/files/12668/MDN.svg"
x="0" y="0" width="100%" height="100%" result="abc"/>
<feDisplacementMap in2="abc" in="SourceGraphic"
scale="30" xChannelSelector="B"/>
</filter>
<text x="10" y="60" font-size="50"
filter="url(#displacementFilter)">Some displaced text</text>
<text x="10" y="120" font-size="50"
filter="url(#displacementFilter2)">Some displaced text</text>
</svg>
Usage notes
Value | R | G | B | A |
---|---|
Default value | A |
Animatable | Yes |
R
- This keyword specifies that the red color channel of the input image defined in
in2
will be used to displace the pixels of the input image defined inin
along the x-axis. G
- This keyword specifies that the green color channel of the input image defined in
in2
will be used to displace the pixels of the input image defined inin
along the x-axis. B
- This keyword specifies that the blue color channel of the input image defined in
in2
will be used to displace the pixels of the input image defined inin
along the x-axis. A
- This keyword specifies that the alpha channel of the input image defined in
in2
will be used to displace the pixels of the input image defined inin
along the x-axis.
Specifications
Specification | Status | Comment |
---|---|---|
Filter Effects Module Level 1 The definition of 'xChannelSelector' in that specification. | Working Draft | No change |
Scalable Vector Graphics (SVG) 1.1 (Second Edition) The definition of 'xChannelSelector' in that specification. | Recommendation | Initial definition |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论