#vscode插件 #vscode代码片段 { // Place your 全局 snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and // description. ...
分类:
其他好文 时间:
2021-06-06 19:18:17
阅读次数:
0
.cls-1 { fill: #cccccc; } .cls-1:hover { fill: orange !important; } <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.7 11.15"> <defs> </defs> < ...
分类:
其他好文 时间:
2021-06-06 18:55:04
阅读次数:
0
传统的表单操作是每个表单元素一个一个获取值进行提交,这样效率比较低 所以我们有了 表单序列化方法: serialize() 他会智能获取表单内的所有元素,会将 里面的内容序列化到字符串中,然后在用AJAX提交。 简单点说:- 方法用于序列化一组表单元素,将表单的内容编码为用于提交的字符串 例: <b ...
分类:
Web程序 时间:
2021-06-03 17:35:26
阅读次数:
0
View 看得见 EidtText TextView checkBox Button 看不见的 ViewGroup LinearLayout RelativeLayout FrameLayout 通用的属性 layout_width layout_height layout_margin 上下左右 ...
分类:
其他好文 时间:
2021-06-02 19:42:17
阅读次数:
0
一手遮天 Android - view(按钮类): Button 样式 ...
分类:
移动开发 时间:
2021-06-02 18:41:08
阅读次数:
0
在产品推广过程中,经常需要判断用户是否对某个模块感兴趣。那么如何实现对一个模块的曝光监听呢? ...
分类:
其他好文 时间:
2021-06-02 18:27:32
阅读次数:
0
一、CSS样式规格选择器:标签选择器类选择器多类名选择器id选择器 id选择器与类选择器区别:类选择器可以多次重复使用,id选择器只能使用一次,是唯一的 通配符选择器 二、CSS3外观属性水平对齐 text-align:首行缩进 text-indent:1em; 1代表一个汉字的缩进字间距 lett ...
分类:
Web程序 时间:
2021-06-02 15:16:39
阅读次数:
0
jQuery 获取jQuery 公式:$(selector).action() jQuery(选择器).事件() <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title><!-- 导入在线cdn ...
分类:
Web程序 时间:
2021-06-02 14:55:16
阅读次数:
0
步骤: 1.生成画布 2.生成画笔,包括颜色 3.开始画 ...