注意:无特殊说明,Flutter版本及Dart版本如下:Flutter版本:1.12.13+hotfix.5Dart版本:2.7.0Draggable系列组件可以让我们拖动组件。DraggableDraggable组件有2个必须填写的参数,child参数是子控件,feedback参数是拖动时跟随移动的组件,用法如下:Draggable(child:Container(height:100,widt
分类:
其他好文 时间:
2020-03-10 23:34:22
阅读次数:
102
SizedBox const SizedBox({ Key key, this.width, //宽 this.height, //高 Widget child //子组件}) SizedBox( width: 200.0, height: 200.0, child: new Container( ...
分类:
数据库 时间:
2020-03-10 15:46:52
阅读次数:
96
一个根据索引值来决定某个child显示的widget IndexedStack( index: _indexStack, alignment: Alignment.center, children: <Widget>[ Text('1'), Text('2'), Text('3'), ], ), ...
分类:
其他好文 时间:
2020-03-10 11:54:45
阅读次数:
62
$("#video_grid_box").on("dblclick",".miniStreamView",function($event){ for(let i=0;i<$("#video_grid_box").children().length;i++){ if($("#video_grid_bo ...
分类:
Web程序 时间:
2020-03-09 23:57:00
阅读次数:
127
xpath的轴有以下几种方式 ? parent::* 表示当前节点的父节点元素? ancestor::* 表示当前节点的祖先节点元素? child::* 表示当前节点的子元素 /A/descendant::* 表示A的所有后代元素? self::* 表示当前节点的自身元素? ancestor-or- ...
分类:
其他好文 时间:
2020-03-08 18:08:43
阅读次数:
99
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv ...
分类:
其他好文 时间:
2020-03-08 14:02:42
阅读次数:
73
不需要多么高大上的编辑器,一个文本文档足够,首先在桌面新建一个文件夹,然后把素材图片放在文件夹,再新建一个文本文档。 先写入模板,对页面布局进行调整,代码如下: <style> *{ margin: 0; padding: 0; list-style: none; } body{ backgroun ...
分类:
其他好文 时间:
2020-03-07 16:26:06
阅读次数:
466
实现效果图: 功能:点击某一个一级菜单时,相应的二级菜单会下拉出现 实现代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-wid ...
分类:
Web程序 时间:
2020-03-07 12:46:09
阅读次数:
129
一、倒计时所对应的前段代码和样式 代码中所用到的前端样式css:nth-last-of-type(n) //选择器匹配属于父元素的特定类型的第 N 个子元素的每个元素,从最后一个子元素开始计数。 :nth-last-child() 选择器,该选择器选取父元素的第 N 个子元素,与类型无关,从最后一个 ...
分类:
其他好文 时间:
2020-03-06 23:58:40
阅读次数:
108
class Node : public Ref 1. 节点创建: Node * Node::create() 2. 添加子节点: void addChild(Node *child) void addChild(Node *child, int zOrder) void addChild(Node ...
分类:
其他好文 时间:
2020-03-06 15:16:15
阅读次数:
83