Home > Web Front-end > HTML Tutorial > css3中matrix函数的使用

css3中matrix函数的使用

WBOY
Release: 2016-06-06 09:32:40
Original
1533 people have browsed it

scale(sx,sy)对应matrix(sx,0,0,sy,0,0)  拉伸


rotate(θ)对应matrix(cosθ,sinθ,-sinθ,cosθ,0,0)  旋转


skew(θx,θy)对应matrix(1,tan(θy),tan(θx),1,0,0)   倾斜

 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template