What is the primary purpose of SVG patterns?
A). Adding interactivity to SVG elements
B). Creating animations in SVG
C). Filling shapes with repeating images or textures
D). Applying filters to SVG graphics
How can you adjust the size of an SVG pattern to fill a shape?
A). By changing the width and height attributes in the <pattern>
element
B). By setting the scale attribute in the shape to the desired size
C). By using a CSS transformation on the pattern
D). By adjusting the viewBox attribute in the SVG element
How can you fill a shape with an SVG pattern?
A). By setting the fill attribute to the pattern ID
B). By setting the stroke attribute to the pattern ID
C). By setting the background attribute to the pattern ID
D). By setting the color attribute to the pattern ID
How can you apply opacity to an SVG pattern?
A). By setting the opacity attribute in the <pattern>
element
B). By using the fill-opacity attribute in the shape
C). By applying a CSS opacity to the pattern
D). By setting the opacity attribute in the <image>
element within the pattern
How can you create a seamless repeating pattern in SVG?
A). By adjusting the size and position of the pattern units
B). By using a single pattern unit
C). By setting the repeat attribute to true
D). By using multiple patterns with the same image
What is the purpose of the patternContentUnits attribute in an SVG pattern?
A). It specifies the units for measuring the pattern's content
B). It defines the position of the pattern within the shape
C). It sets the color palette for the pattern
D). It adjusts the opacity of the pattern
What does the patternTransform attribute in an SVG pattern do?
A). It applies a transformation matrix to the pattern
B). It sets the blend mode for the pattern
C). It adjusts the opacity of the pattern
D). It specifies the rotation angle of the pattern
How do you repeat an image within an SVG pattern?
A). By adjusting the width and height attributes of the <pattern>
element
B). By setting the repeat attribute to true
C). By using the <image>
element within the pattern
D). By setting the repeat attribute in the <image>
element within the pattern
How can you rotate an SVG pattern to create a diagonal pattern effect?
A). By using the rotate attribute in the <pattern>
element
B). By setting the angle attribute in the <pattern>
element
C). By applying a CSS rotation to the pattern
D). By setting the transform attribute to rotate() in the shape
How can you change the color of an SVG pattern?
A). By adjusting the color attribute in the <pattern>
element
B). By setting the fill attribute in the shape to the desired color
C). By using a CSS color property in the pattern
D). By setting the color attribute in the <image>
element within the pattern