2017-12-15 29 views
-1

행렬에 코드 값을 제공해야하지만이를 수행하는 방법을 모릅니다. 나를 도와 줄 수 있습니까? 내가 나쁜 편집값을 표시하는 행렬 변환

That's how many values i should get

<html lang="pl"> 
<html><head><meta charset="utf-8"><title>New</title> 
<style type="text/css"> 
body font-size:20px; margin:0px 100px; 
div position:absolute; top:200px; left:200px; width:100px; height:100px; 
background-color:rgba(180,220,180,0.2);border: 1px dotted red; 
#el1 transform: rotate(122deg) scale(0.7080,1.0700) translate(15px,34px); 
#el2 transform: matrix(//here); 
</style></head> 
<body><h1>Transformation</h1> 
<div id="el1">el 1</div> 
<div id="el2">el 2</div> 
</body></html> 
</pre> 

죄송 얻어야한다 얼마나 많은 값의

.

시간 내 주셔서 감사합니다.

답변

0

CSS 매트릭스 사용 6 값 :

matrix(a, b, c, d, tx, ty)

예 :

.active{ 
    transform: matrix(1, 2, -1, 1, 80, 80); 
} 
+0

http://www.useragentman.com/IETransformsTranslator/이 일을 할 수 있습니까? – vevon