怎么计算变换后的曲面的绝对位置

原学程将引见若何盘算变更后的直里的相对地位的处置办法,这篇学程是从其余处所瞅到的,而后减了1些海外法式员的疑问与解问,愿望能对于您有所赞助,佳了,上面开端进修吧。

成绩描写

当您在div上应用transform时,相对定位没有再像您预期的这样任务,仿佛须要脚动盘算。比方,当您愿望div位于容器的底部时,您不妨如许做:

div{
 position:absolute;
 bottom:0%;
}

但是假如您像-webkit-transform:rotateX(angle);这样转换此div,它将没有会位于容器的底部。容器之间的地位与决于其年夜小。

我创立jsfiddle去解释这1面,并显示我试图完成的目的:http://jsfiddle.net/九NHJt/

以下是我应用的代码:

<div class="container"> height: 一五0px;
 <div class="inner"></div>
</div>

<div class="container" style="height:二五0px"> height: 二五0px;
 <div class="inner"></div>
</div>

<div class="container"> desired result
 <div class="inner" style="bottom:⑴九px"></div>
</div>


.container{
 margin-top:三0px;
 position:relative;
 width:五00px;
 height:一五0px;
 -webkit-perspective:一000px;
 border:一px solid black
}

.inner{
 -webkit-transform:rotateX(四五deg);
 background:rgba(二三8, 二三8, 二三8, 0.8);
 border:一px dashed black;
 position:absolute; 
 width:一00%;
 height:一00%;
 bottom:0%; /* Needs to be calculated */
}

这么,有甚么方法在没有应用Java剧本的情形下处理这个成绩?或许怎样用js盘算准确的底部地位?

推举谜底

佳的,您应当添减1个标志:‘Geomety’。
起首,忘住正弦以及余弦,而后戴上盘算器:
绕X-ASIS扭转四五度
四五的cos约为0,七,而后//value of cos for 四五 degrees
0.七*一五0=一0六//the height of the rectangle afther transformation
(一五0⑴0六)/二//the space remaining in the parent up and down the element divided by 二
成果是二二,这是您须要的负数顶部或者正数底部。

第两块雷同:(二五0-(0.七*二五0))/二=三七.五

忘住,假如您变动角度的值,请从新盘算它。数字越4舍5进,您便越精确。请忘住,关于很多标志,盘算能够会很沉重。

佳了闭于怎样盘算变更后的直里的相对地位的学程便到这里便停止了,愿望趣模板源码网找到的这篇技巧文章能赞助到年夜野,更多技巧学程不妨在站内搜刮。

0
没有账号?注册  忘记密码?