HTML 网页的结构 WEB标准 WEB标准是网页制作的标准,它不是一个标准,它是根据网页的不同组成部分生成的一系列标准。这些标准大部分由W3C起草发布,也有部分标准由ECMA起草发布。 W3C( World Wide Web Consortium )万维网联盟,创建于1994年是Web技术领域最具 ...
分类:
Web程序 时间:
2020-06-24 16:15:04
阅读次数:
103
1 def _parse_known_args(self, arg_strings, namespace): 2 # replace arg strings that are file references 3 if self.fromfile_prefix_chars is not None: 4 ...
分类:
其他好文 时间:
2020-06-24 14:04:54
阅读次数:
54
transitionDuration:提示框浮层的移动动画过渡时间,单位是 s,设置为 0 的时候会紧跟着鼠标移动。 tooltip: { transitionDuration: 0, }, 官方文档说明: https://echarts.apache.org/zh/option.html#tool ...
分类:
其他好文 时间:
2020-06-24 13:40:46
阅读次数:
218
需求有个折线图,用 echarts 画一下: 上个测试连接:https://echarts.apache.org/examples/zh/editor.html?c=line-stack 记录下 option = { title: { text: '数据趋势' }, tooltip: { trigg ...
分类:
其他好文 时间:
2020-06-24 12:30:22
阅读次数:
69
1、.ini 1)格式: [section] >区域名 Option = value >选项名等于值 2)读取.ini文件 A.引入configparser.py中的ConfigParser类 B.实例化:conf = ConfigParser() C.读取配置文件:read()方法 conf.re ...
分类:
其他好文 时间:
2020-06-24 12:24:47
阅读次数:
50
Session-State Modes ASP.NET session state supports several different storage options for session data. Each option is identified by a value in the Ses ...
分类:
其他好文 时间:
2020-06-23 10:28:23
阅读次数:
59
1、程序路径不能有中文,因为MinGW不支持 2、选择一个文件夹当作工作区,并且在该文件夹下创建./vscode文件夹,并在该文件夹下创建两个json文件 launch.json { "version": "0.2.0", "configurations": [ { "name": "C/C++", ...
分类:
其他好文 时间:
2020-06-22 22:28:38
阅读次数:
45
//密码验证规则 services.Configure<IdentityOptions>(options => { options.Password.RequireDigit = false; options.Password.RequireLowercase = false; options.Pa ...
分类:
其他好文 时间:
2020-06-22 17:29:56
阅读次数:
162
1.源码 /// <summary> /// MainWindow.xaml 的交互逻辑 /// </summary> public partial class MainWindow : Window { int iPort; int iRetUSB = 0, iRetCOM = 0; static ...
1、UITouch简介 当用户触摸屏幕时,会创建一个UITouch对象; UITouch的作用保存着触摸相关的信息,比如触摸的位置、时间、阶段等; 当从开始到结束,系统会更新UITouch对象,结束时会被销毁。 期间所有的UITouch对象都被包含在UIEvent事件对象中,由管理程序UIAppli ...
分类:
移动开发 时间:
2020-06-22 12:53:19
阅读次数:
61