5.0.0 • Published 10 years ago

stylecow-plugin-msfilter-transform v5.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

stylecow plugin msfilter-transform

Build Status

Stylecow plugin to add ms filters emulating some 2d transforms: rotate(), scale(), skew(), matrix(), etc

Some code has been taken from https://github.com/pbakaus/transformie (thanks so much, guys!!)

You write:

p {
	transform: skew(30deg, 10deg);
}

And stylecow converts to:

p {
	transform: skew(30deg, 10deg);
	-ms-filter: 'progid:DXImageTransform.Microsoft.Matrix(sizingMethod="auto expand", M11 = 1, M12 = 0, M21 = 0.5773502691896257, M22 = 1)';
}

More demos in the tests folder

5.0.0

10 years ago

4.1.0

10 years ago

4.0.1

10 years ago

4.0.0

10 years ago

3.0.0

10 years ago

2.0.0

11 years ago

1.1.0

11 years ago

1.0.0

11 years ago