Flexbox ——弹性布局 Flexbox is a layout model for displaying items in a single dimension — as a row or as a column. 弹性布局是一种基于一维的行和列的布局模型. The key feature of flexbox is the fact that items in a flex layout can grow and shrink. 弹性布局的关键特性就是item(项)可以放大和收缩. Sp…
this是js里面很常用的关键字,而灵活的js也赋予了这个关键字无穷的生命力,相信你也有被它糊弄的时候,我总结了一个6字原则,大部分场合都能清醒分辨this到底指向who,跟大家分享一下,欢迎指正. 谁调用指向谁! 首先介绍一个大boss: window, 他是一个隐形大侠,没有确定的调用者的时候,肯定是它出手, 也就是说,如果一个对象没有显性的调用者时,this指向的就是window. 先看下面的例子: var x = 10; function test(){ console.log("---…
容器的概念,是用来包含其它容器(container)和项目(item). flex container——flex容器 A flexbox layout is defined using the flex or inline-flex values of the display property on the parent item. This element then becomes a flex container, and each one of its children becomes…
Flex Item flex容器的子元素就是这个容器的flex item. The direct children of a Flex Container (elements with display: flex or display: inline-flex set on them) become flex items. Continuous runs of text inside flex containers will also become flex items. flex容器里的连续文…
委托是c#语言的一大亮点,最大的作用是让一个方法可以作为另一个方法的参数 下面是一个简单的示例 internal class Program { //使用delegate定义委托类型 private delegate void MyDelegate(int a, int b); private static void Main() { //声明变量,实例化委托,传递的实例方法,也可以是静态类型 var d = new MyDelegate(new Program().Add); //委托作为参数…
友情提示:更多详情.每个命令的例子.参数变化对比图文详解,欢迎关注九十七度的博客:SVG<Path>命令详解 M = moveto M x y 移动到指定坐标,xy分别为x轴和y轴的坐标点,类似画笔的起点. path中的起点,必须存在(文档中虽然没有提到过,但是path的其他命令都需要依赖一个初始位置,而实际操作过程中也没有需要到可以不使用M的情况,后面发现有例外我再过来补充. L = lineto L x y 在初始位置(M 画的起点)和xy确定的坐标画一条线. 两点一线,直线,绘图中很常见…
Cross Axis——交叉轴,与Main Axis(主轴)垂直交叉. main axis is row or row-reverse the cross axis runs down the columns. 主轴是row或者row-reverse的时候,交叉轴是列的方向,就是垂直于水平方向,因为此时主轴为水平方向,交叉轴与主轴垂直交叉. main axis is column or column-reverse then the cross axis runs along the rows.…