InterviewSolution
Saved Bookmarks
| 1. |
Which property of SVG restricts the region to which paint can be applied?(a) animateTransform(b) clip-Path(c) linearGradient(d) radialGradientI had been asked this question during an interview.The question is from Scalable Vector Graphics in chapter HTML Markup, Forms, Video, Audio & Other Multimedia of HTML |
|
Answer» CORRECT choice is (b) clip-Path Easy EXPLANATION: Allowing animation to control translation, scaling or rotation is done by animateTransform element. A CLIPPING path is defined by clip-path element. A clipping path is defined with a clipPath element. A clipping path is used/referenced using the clip-path property. A radialGradient lets AUTHORS define radial gradients to fill or stroke GRAPHICAL elements. |
|