InterviewSolution
Saved Bookmarks
| 1. |
What combines all the 2D transform methods into one?(a) skewX()(b) matrix()(c) skewY()(d) skew() |
|
Answer» Right option is (b) matrix() To explain: The matrix() method combines all 2D transform methods into one, the matrix() method takes six parameters, containing mathematic functions, that allows us to rotate, scale, move or skew the elements. |
|