transform 和 translate transform指变换、变形,是css3的一个属性,和其他width,height属性一样 translate 是transform的属性值,是指元素进行2D变换,2D变换就是指,元素以当前位置(0,0)按照x轴的方向移动多少,按照y轴的方向移动多少 例 ...
分类:
Web程序 时间:
2020-03-25 10:45:29
阅读次数:
90
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
transform,ROS中管理3D坐标系变换的工具。只要告诉tf两个相关联坐标系的坐标变换信息,tf会帮你一直记录这个两个坐标系的坐标变换,即使两个坐标系处于运动中。1 tf的命令行用法有以下6种:view_frames: visualizes the full tree of coordinat ...
分类:
其他好文 时间:
2020-03-22 17:40:31
阅读次数:
157
显示效果 显示效果 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
浏览器的问题,这个 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. 讲讲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
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
介绍 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