feFlood
feFlood
This page has been flagged with the following issues:
High-level issues:
Needs Summary: This article does not have a summary. Summaries give a brief overview of the topic and are automatically included on some listing pages that link to this article.
Overview Table
| DOM Interface | SVGElement |
|---|
Examples
This example shows a simple flood filter that is green colored and has an opacity of 50%.
The image will look like this.
<!DOCTYPE HTML> <html> <head></head> <body> <svg width="400" height="400"> <defs> <filter id="MyFilter" filterUnits="userSpaceOnUse" x="0" y="0" width="400" height="400"> <feFlood x="100" y="100" width="100" height="100" flood-color="green" flood-opacity="0.5"/> </filter> </defs> <use filter="url(#MyFilter)" x='0' y='0'/> </svg> </body> </html>
Notes
Remarks
The purpose of this filter is to provide a rectangular area that can be part of a larger filter chain. If you do not supply a color or opacity, the default values will be used. You can supply the x, y, width, and height values, but if you do not, they will be defined by the general filter region.
Syntax
Standards information
- Scalable Vector Graphics: Filter Effects, Section 15.25.18
Members
The SVGFEFloodElement object has these properties:
- height: Gets or sets the height of an element.
- result: Provides a reference for the output result of a filter.
- width: Defines the width of an element.
- x: Gets or sets the x-coordinate value.
- y: Gets or sets the y-coordinate value.
Compatibility
Desktop
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | ? | ? | ? | ? | ? |
Mobile
| Feature | Android | BlackBerry | Chrome for mobile | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Opera Mini | Safari Mobile |
|---|---|---|---|---|---|---|---|---|
| Basic support | ? | ? | ? | ? | ? | ? | ? | ? |
See also
Related articles
Filters
- feFlood
This article contains content originally from external sources.
Portions of this content come from the Microsoft Developer Network: [Windows Internet Explorer API reference Article]
This tool helps to make and review comments inline.
How to Use
insert instructions, with images, here