码迷,mamicode.com
首页 >  
搜索关键字:transform    ( 3699个结果
CSS3 中的 transition,transform,translate 区别和作用
transform 和 translate transform指变换、变形,是css3的一个属性,和其他width,height属性一样 translate 是transform的属性值,是指元素进行2D变换,2D变换就是指,元素以当前位置(0,0)按照x轴的方向移动多少,按照y轴的方向移动多少 例 ...
分类:Web程序   时间:2020-03-25 10:45:29    阅读次数:90
输入:B相对于A的坐标(加入以A为原点,B的坐标)。 输出:B的世界坐标
A.transform.TransformPoint ( Vector3 relativePosition ) ; 其中这里的relativePosition 就是B相对于A的坐标。 这样就查询到了B的世界位置。 拓展:如果要反过来的话:知道B的世界坐标,想求B相对于A的坐标。 A.transfor ...
分类:其他好文   时间:2020-03-23 20:33:52    阅读次数:70
浏览器缓存机制
简介 浏览器缓存机制,其实主要就是http协议定义的缓存机制(如:Expires,Cache control等).但也有非http协议定义的缓存机制,如使用HTML Meta标签,web 开发者可以在html页面的中加入标签,代码如下: 上述代码的作用就是告诉浏览器当前页面不被缓存,每次访问都需要去 ...
分类:其他好文   时间:2020-03-22 19:52:12    阅读次数:71
tf static_transform_publisher
transform,ROS中管理3D坐标系变换的工具。只要告诉tf两个相关联坐标系的坐标变换信息,tf会帮你一直记录这个两个坐标系的坐标变换,即使两个坐标系处于运动中。1 tf的命令行用法有以下6种:view_frames: visualizes the full tree of coordinat ...
分类:其他好文   时间:2020-03-22 17:40:31    阅读次数:157
css动画过渡效果
显示效果 显示效果 css代码如下 1 div{ 2 width: 100px; 3 height: 100px; 4 background-color: blue; 5 transition: width 2s,height 2s,transform 2s; 6 -webkit-transitio ...
分类:Web程序   时间:2020-03-21 15:08:54    阅读次数:75
FireFox - 当 transform 的值为 scale(浮点数) 时边框渲染错误
浏览器的问题,这个 bug 已经有很久的历史了。[1476379 - Border issue (pixels) when using floating point numbers in css transform: scale()](https://bugzilla.mozilla.org/sho... ...
分类:其他好文   时间:2020-03-19 21:30:59    阅读次数:79
字节面经-1
1. 讲讲child1,child2的变化,为什么?<div> div class='child1' div class='child2' div class='child3'</div>.child2 { transform: translateY(200px)} transform提升元素的垂直 ...
分类:其他好文   时间:2020-03-18 09:44:21    阅读次数:60
【106天】前端碎片知识拾遗00004
CSS nth-child() nth-child()不止作用于子元素,还会作用于孙子元素,比如:div:nth-child(1),不止会作用于div,还会作用于div里的div. table相关元素的backgroundborderheightwidthmarginpadding测试 demo结论 ...
分类:其他好文   时间:2020-03-17 10:22:30    阅读次数:82
大地坐标系和空间直角坐标系的转换
大地坐标系转空间直角坐标系 import math A_ALIS = 6378137 B_ALIS = 6356752.3142 E = math.sqrt(A_ALIS * A_ALIS - B_ALIS * B_ALIS) / A_ALIS def transform_latlonhei2xyz ...
分类:其他好文   时间:2020-03-15 16:21:57    阅读次数:83
linux 下强大的 JSON 解析命令 jq
介绍 jq is like for JSON data you can use it to slice and filter and map and transform structured data with the same ease that , , and friends let you p ...
分类:Web程序   时间:2020-03-14 23:54:54    阅读次数:89
3699条   上一页 1 ... 23 24 25 26 27 ... 370 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!