- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
给定一个 DOM 元素 el
我们对其应用了变换矩阵 M
( DOMMatrix
的实例)及其当前的边界矩形 rect
,我们如何获得边界矩形rect_init
那对应于未转换的元素?
即给定此代码:
let rect = el.getBoundingClientRect();
el.style.transform = '';
let rect_init = el.getBoundingClientRect();
el.style.transform = M.toString();
知乎
rect
和
M
,我们可以得到
rect_init
?
let target_element = document.querySelector('#target');
let M = new DOMMatrix()
.translate(20, 30)
.rotate(30)
.scale(1.25);
let init_rect = target_element.getBoundingClientRect();
target_element.style.transform = M.toString();
let rect = target_element.getBoundingClientRect();
document.querySelector('#rect-init').textContent = serialize(init_rect);
document.querySelector('#rect').textContent = serialize(rect);
document.querySelector('#matrix').textContent = M.toString();
function serialize(rect) {
return `x: ${rect.x}; y: ${rect.y}, w: ${rect.width}, h: ${rect.height}`;
}
#target {
background: red;
width: 200px;
height: 100px;
position: absolute;
left: 30px;
top: 50px;
}
#info {
background: #eee;
padding: 1em;
margin-top: 250px;
font: 0.9em monospace;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div id='target'>Target</div>
<dl id='info'>
<dt>initial bbox: </dt>
<dd id='rect-init'></dd>
<dt>current bbox: </dt>
<dd id='rect'></dd>
<dt>M:</dt>
<dd id='matrix'></dd>
</dl>
</body>
</html>
最佳答案
我设法让它工作......
所以我做了一个小的 C++/OpenGL 例子来测试这个:
//---------------------------------------------------------------------------
//--- input data ------------------------------------------------------------
//---------------------------------------------------------------------------
double m[16]= // matrix
{
1.0825317547305484,-0.6249999999999999,0.0,20.0,
0.6249999999999999, 1.0825317547305484,0.0,30.0,
0.0 , 0.0 ,1.0,0.0 ,
0.0 , 0.0 ,0.0,1.0
};
double a[4][3]= // your un-transformed rectangle
{
{ 30 ,50 ,0 },
{ 30+200,50 ,0 },
{ 30+200,50+100,0 },
{ 30 ,50+100,0 },
};
//---------------------------------------------------------------------------
//--- just matrix and vector math you can ignore this -----------------------
//---------------------------------------------------------------------------
void vector_copy (double *c,double *a) { for(int i=0;i<3;i++) c[i]=a[i]; }
void matrix_mul (double *c,double *a,double *b) // c[16] = a[16]*b[16]
{
double q[16];
q[ 0]=(a[ 0]*b[ 0])+(a[ 1]*b[ 4])+(a[ 2]*b[ 8])+(a[ 3]*b[12]);
q[ 1]=(a[ 0]*b[ 1])+(a[ 1]*b[ 5])+(a[ 2]*b[ 9])+(a[ 3]*b[13]);
q[ 2]=(a[ 0]*b[ 2])+(a[ 1]*b[ 6])+(a[ 2]*b[10])+(a[ 3]*b[14]);
q[ 3]=(a[ 0]*b[ 3])+(a[ 1]*b[ 7])+(a[ 2]*b[11])+(a[ 3]*b[15]);
q[ 4]=(a[ 4]*b[ 0])+(a[ 5]*b[ 4])+(a[ 6]*b[ 8])+(a[ 7]*b[12]);
q[ 5]=(a[ 4]*b[ 1])+(a[ 5]*b[ 5])+(a[ 6]*b[ 9])+(a[ 7]*b[13]);
q[ 6]=(a[ 4]*b[ 2])+(a[ 5]*b[ 6])+(a[ 6]*b[10])+(a[ 7]*b[14]);
q[ 7]=(a[ 4]*b[ 3])+(a[ 5]*b[ 7])+(a[ 6]*b[11])+(a[ 7]*b[15]);
q[ 8]=(a[ 8]*b[ 0])+(a[ 9]*b[ 4])+(a[10]*b[ 8])+(a[11]*b[12]);
q[ 9]=(a[ 8]*b[ 1])+(a[ 9]*b[ 5])+(a[10]*b[ 9])+(a[11]*b[13]);
q[10]=(a[ 8]*b[ 2])+(a[ 9]*b[ 6])+(a[10]*b[10])+(a[11]*b[14]);
q[11]=(a[ 8]*b[ 3])+(a[ 9]*b[ 7])+(a[10]*b[11])+(a[11]*b[15]);
q[12]=(a[12]*b[ 0])+(a[13]*b[ 4])+(a[14]*b[ 8])+(a[15]*b[12]);
q[13]=(a[12]*b[ 1])+(a[13]*b[ 5])+(a[14]*b[ 9])+(a[15]*b[13]);
q[14]=(a[12]*b[ 2])+(a[13]*b[ 6])+(a[14]*b[10])+(a[15]*b[14]);
q[15]=(a[12]*b[ 3])+(a[13]*b[ 7])+(a[14]*b[11])+(a[15]*b[15]);
for(int i=0;i<16;i++) c[i]=q[i];
}
void matrix_mul_vector(double *c,double *a,double *b) // c[3] = a[16]*b[3]
{
double q[3];
q[0]=(a[ 0]*b[0])+(a[ 4]*b[1])+(a[ 8]*b[2])+(a[12]);
q[1]=(a[ 1]*b[0])+(a[ 5]*b[1])+(a[ 9]*b[2])+(a[13]);
q[2]=(a[ 2]*b[0])+(a[ 6]*b[1])+(a[10]*b[2])+(a[14]);
for(int i=0;i<3;i++) c[i]=q[i];
}
void matrix_subdet (double *c,double *a); // c[16] = all subdets of a[16]
double matrix_subdet ( double *a,int r,int s); // = subdet(r,s) of a[16]
double matrix_det ( double *a); // = det of a[16]
double matrix_det ( double *a,double *b); // = det of a[16] and subdets b[16]
void matrix_inv2 (double *c,double *a); // c[16] = a[16] ^ -1
void matrix_subdet (double *c,double *a)
{
double q[16];
int i,j;
for (i=0;i<4;i++)
for (j=0;j<4;j++)
q[j+(i<<2)]=matrix_subdet(a,i,j);
for (i=0;i<16;i++) c[i]=q[i];
}
double matrix_subdet ( double *a,int r,int s)
{
double c,q[9];
int i,j,k;
k=0; // q = sub matrix
for (j=0;j<4;j++)
if (j!=s)
for (i=0;i<4;i++)
if (i!=r)
{
q[k]=a[i+(j<<2)];
k++;
}
c=0;
c+=q[0]*q[4]*q[8];
c+=q[1]*q[5]*q[6];
c+=q[2]*q[3]*q[7];
c-=q[0]*q[5]*q[7];
c-=q[1]*q[3]*q[8];
c-=q[2]*q[4]*q[6];
if (int((r+s)&1)) c=-c; // add signum
return c;
}
double matrix_det ( double *a)
{
double c=0;
c+=a[ 0]*matrix_subdet(a,0,0);
c+=a[ 4]*matrix_subdet(a,0,1);
c+=a[ 8]*matrix_subdet(a,0,2);
c+=a[12]*matrix_subdet(a,0,3);
return c;
}
double matrix_det ( double *a,double *b)
{
double c=0;
c+=a[ 0]*b[ 0];
c+=a[ 4]*b[ 1];
c+=a[ 8]*b[ 2];
c+=a[12]*b[ 3];
return c;
}
void matrix_inv(double *c,double *a)
{
double d[16],D;
matrix_subdet(d,a);
D=matrix_det(a,d);
if (D) D=1.0/D;
for (int i=0;i<16;i++) c[i]=d[i]*D;
}
//---------------------------------------------------------------------------
//--- render ----------------------------------------------------------------
//---------------------------------------------------------------------------
void TForm1::draw()
{
int i;
double xs=ClientWidth,ys=ClientHeight; // just my GL view resolution
double p[3],im[16]; // some temp point and inverse matrix
double b[4][3]; // your rectangle
matrix_inv(im,m); // im=Inverse(m)
glClear(GL_COLOR_BUFFER_BIT);
glDisable(GL_CULL_FACE);
glDisable(GL_DEPTH_TEST);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glTranslated(-0.5,+0.5,0.0);
glScaled(2.0/xs,-2.0/ys,1.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
// render transformed a and compute its BBOX into b
glColor3d(0.0,0.5,0.5); // aqua
glBegin(GL_LINE_LOOP);
for (i=0;i<4;i++)
{
// transform and render rectangle a
matrix_mul_vector(p,im,a[i]); // p = inverse(m)*a[i]
glVertex2dv(p);
// compute transformed BBOX b[0]=min(p) b[2]=max(p)
if (i==0)
{
vector_copy(b[0],p);
vector_copy(b[2],p);
}
if (b[0][0]>p[0]) b[0][0]=p[0];
if (b[2][0]<p[0]) b[2][0]=p[0];
if (b[0][1]>p[1]) b[0][1]=p[1];
if (b[2][1]<p[1]) b[2][1]=p[1];
}
glEnd();
// convert BBOX b[0],b[2] to rectangle
b[1][0]=b[2][0];
b[1][1]=b[0][1];
b[3][0]=b[0][0];
b[3][1]=b[2][1];
// render transformed b
glColor3d(0.8,0.0,0.0); // red
glBegin(GL_LINE_LOOP);
for (i=0;i<4;i++) glVertex2dv(b[i]); glEnd();
// untransform b to rectangle local coordinates
for (i=0;i<4;i++) matrix_mul_vector(b[i],m,b[i]); // b[i] = m*b[i]
// render a,b in local coordiantes (untransformed)
glColor3d(0.0,0.25,0.25); // aqua
glBegin(GL_LINE_LOOP);
for (i=0;i<4;i++) glVertex2dv(a[i]);
glEnd();
glColor3d(0.4,0.0,0.0); // red
glBegin(GL_LINE_LOOP);
for (i=0;i<4;i++) glVertex2dv(b[i]);
glEnd();
glFlush();
SwapBuffers(hdc);
}
//---------------------------------------------------------------------------
并调整您的转换符号,直到它与您的预览匹配:
m
转换的东西较暗的是没有变换(矩形局部)。
p
转换符号进入 Canvas 坐标是:
p' = Inverse(m)*p
所以要变回你通常会完成:
p = m*p`
但是,如果您的逆矩阵只是伪逆(如
this )以使其工作,您需要按比例划分逆矩阵。
m
和他们在一起,结果就是你所寻求的。
关于math - 给定元素的当前边界矩形及其变换矩阵,计算未变换元素的边界矩形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65593780/
我编写了一个应用程序,它有一个 UIViewController,它在纵向模式下显示另一个 UIViewController,在横向模式下显示不同的 UIViewController。 当我去风景时,
我想为 UISegmentedControl 提供以下方面: 注意灰色背景 View ,以及分段控件未选定项目的白色背景。 但是,如果我为 UISegmentedControl 提供白色背景,我会得到
我正在尝试为我的可排序项目创建边界。我看过这个问题/答案: jquery sortable keep within container Boundary 并尝试将我的 JS 以此为基础,但无论出于何种
我正在尝试编写执行以下操作的代码:如果我单击起始位置为 (100,100) 的字符串 C(JLabel),该字符串将在 JFrame 的边界内移动。代码本身并不难实现,但我遇到了问题为 JLabel
我有一个 .xib 文件,其中包含我想用来播放视频文件的 View 。该 View 具有配置其大小和位置的约束。现在我需要获取这些来配置我的视频播放器: let slide1: OnboardingS
我将从 Google map 转到 Apple map 。 Google map 能够根据东北和西南坐标更新相机,如下所示: let bounds = GMSCameraUpdate.fit(GMSC
这个问题在这里已经有了答案: Border over a bitmap with rounded corners in Android (6 个答案) 关闭 6 年前。 如何为我的图片添加圆角边框?
我有一个任务是使用java.awt.Graphics绘制一定数量的圆圈。 绘制圆圈相当简单,但我只应该在圆圈出现在可见区域内时绘制圆圈。我知道我可以调用方法 getClipBounds() 来确定绘图
我在设置过渡时遇到问题,目前它是从上到下(它是悬停时显示的边框)。我希望过渡从中间开始并传播到侧面,或者至少从任何一侧开始并传播到另一侧... 我的导航菜单 anchor 使用导航链接类! * {
我来自 Java,目前正在学习 C++。我正在使用 Stroustrup 的 Progamming Principles and Practice of Using C++。我现在正在使用 vecto
我有一个要展开的循环: for(int i = 0; i < N; i++) do_stuff_for(i); 展开: for(int i = 0; i < N; i += CHUNK) {
Scala 中是否有类似 View 绑定(bind)但可以匹配子类型的东西? 由于 Scala 中的 View 没有链接,我目前有以下内容: implicit def pimpIterable[A,
网站用户输入地址。 如果地址在边界内,则“合格”。如果地址超出边界,则“不合格”。 是否有现有的小部件或代码可以执行此操作?有人知道实现这一目标的第一步吗?感谢您的任何意见。 最佳答案 哇,反对票是怎
我有以下测试应用程序: import Codec.Crypto.AES import qualified Data.ByteString.Char8 as B key = B.pack "Thisis
我正在尝试添加一个 JButton,但它与进度条水平对齐。如何将 JButton 对齐到下面的线上? 另外,我试图将所有组件分组到不同的组中,但我不确定如何执行此操作。有谁知道吗? 最佳答案 要简单分
假设我们有一个像上面这样的相框。从中心开始,如何找到可用于绘制的面积最大的矩形(矩形中的所有像素必须为 rgb(255,255,255)? 我需要找到图中所示的A点和B点的x和y坐标。 我的方法之一是
这可能是一个愚蠢的问题,但当我创建一个类时,我应该如何正确设置其中属性的边界。 例子:如果我有这门课 class Product { private string name; publ
我正在从 leaflet 迁移回来,如果我需要 map 绑定(bind),我使用以下代码: var b = map.getBounds(); $scope.filtromapa.lat1 = b.ge
我正在学习如何创建自定义 UIView。我正在制作的这个特定 View 包含几个按钮。我注意到,当我从惰性实例化 block 中调用frame/height属性时,我得到的值是128,但是当我调用dr
我正在尝试制作一个弹跳球。设置的边界允许球在超出框架边界后从起点开始。我无法让球弹起来。一旦击中边界(框架的外边缘),如何让球弹起?我相信问题出在 moveBall() 方法中。 主类 导入 java
我是一名优秀的程序员,十分优秀!