Leave a Comment
Повернуть картинку при помощи css
Проблема, как всегда, в ИЕ.
Вот сервис? который генерит стили и для нормальных браузеров, и для старых ИЕ — http://www.useragentman.com/IETransformsTranslator/
На выходе получаем что-то вроде:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
#transformedObject { width: 220px; height: 70px; -moz-transform: rotate(15deg) translateX(230px) scale(1.5); -o-transform: rotate(15deg) translateX(230px) scale(1.5); -webkit-transform: rotate(15deg) translateX(230px) scale(1.5); transform: rotate(15deg) translateX(230px) scale(1.5); } /* * The following two rules are for IE only and * should be wrapped in conditional comments. * The -ms-filter rule should be on one line * and always *before* the filter rule if * used in the same rule. */ #transformedObject { /* IE8+ - must be on one line, unfortunately */ -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.4488887394336025, M12=-0.388228567653781, M21=0.388228567653781, M22=1.4488887394336025, SizingMethod='auto expand')"; /* IE6 and 7 */ filter: progid:DXImageTransform.Microsoft.Matrix( M11=1.4488887394336025, M12=-0.388228567653781, M21=0.388228567653781, M22=1.4488887394336025, SizingMethod='auto expand'); /* * To make the transform-origin be the middle of * the object. Note: These numbers * are approximations. For more accurate results, * use Internet Explorer with this tool. */ margin-left: 58px; margin-top: -32px; } |
Similar Posts
- None Found
LEAVE A COMMENT
Для отправки комментария вам необходимо авторизоваться.