12 2021 档案
摘要:function Person(name,age){ this.name=name this.age=age } Person.prototype.getName=function(){ return this.name } var p1=new Person('aa',12) var p2=new
阅读全文
摘要:https://www.minimamente.com/ https://animate.style/ http://ianlunn.github.io/Hover/ https://angrytools.com/
阅读全文
摘要:-webkit-:谷歌和safari -moz- :火狐 -ms-:ie text-shadow: 5px 1px 3px #008000 ; //文字阴影 参数:水平 垂直 模糊大小 颜色 可以设置多个用逗号隔开 box-shadow: 3px 3px 8px 5px #04BAF8; //盒子阴
阅读全文
摘要:容器css属性: display: flex; justify-content:space-evenly; //水平主轴方向space-between 容器中两边项目靠边并且各项目水平间隔距离一样 space-around 容器中各项目水平间隔距离是两边项目距离容器的两倍 space-evenly
阅读全文
摘要:1、 cssgr.id 地址 : https://cssgr.id/ 2、csslayout.io 地址 : https://csslayout.io/ 3、Loading.io 地址 : https://loading.io/flexbox 4、CSS grid-generator 地址 : ht
阅读全文