Jump to content
  • 0

Кросбраузерно повернуть надпись


okunev2
 Share

Question

6 answers to this question

Recommended Posts

  • 0

1) Идём в Википедию и читаем про матрицу поворота.
2) Ищем в интернетах формулу для перевода градусов в радианы.
3) Например при помощи JS в консоли считаем какой будет синус и косинус нужного угла:
 

Math.sin(-45 * Math.PI / 180); // -0.7071067811865475Math.cos(-45 * Math.PI / 180); // 0.7071067811865476

 
4) Наша матрица поворота будет выглядеть так:
 

|cos, -sin|   | 0.7071067811865476,  0.7071067811865475 ||         | = |                                         ||sin,  cos|   | -0.7071067811865475, 0.7071067811865476 |

 
5) Сочиняем CSS:
 

.rotate-45 {  -webkit-transform: matrix(0.7071067811865476, -0.7071067811865475, 0.7071067811865475, 0.7071067811865476, 0, 0);  -moz-transform: matrix(0.7071067811865476, -0.7071067811865475, 0.7071067811865475, 0.7071067811865476, 0, 0);  -ms-transform: matrix(0.7071067811865476, -0.7071067811865475, 0.7071067811865475, 0.7071067811865476, 0, 0);  -o-transform: matrix(0.7071067811865476, -0.7071067811865475, 0.7071067811865475, 0.7071067811865476, 0, 0);  transform: matrix(0.7071067811865476, -0.7071067811865475, 0.7071067811865475, 0.7071067811865476, 0, 0);  /* для старых ИЕ */  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865476, M12=0.7071067811865475, M21=-0.7071067811865475, M22=0.7071067811865476,sizingMethod='auto expand')";  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865476, M12=0.7071067811865475, M21=-0.7071067811865475, M22=0.7071067811865476,sizingMethod='auto expand');}

6) Проверяем расчёты :)

  • Like 1
Link to comment
Share on other sites

  • 0

Имхо, на практике достаточно

.rotate-45 {  /* для ios7 safari/android browser */  -webkit-transform: rotate(-45deg);  /* для IE9 */  -ms-transform: rotate(-45deg);  /* для всех остальных, включая Оперу 12.1 */  transform: rotate(-45deg);}.ie_lt9 .rotate-45 {  /* для реально ископаемых ИЕ... оно точно того стоит? ;) */  /* если да, то надо спрятать от IE9, т.к. он понимает и фильтры, и -ms-transform */  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865476, M12=0.7071067811865475, M21=-0.7071067811865475, M22=0.7071067811865476,sizingMethod='auto expand');}
  • Like 1
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy