自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(18)
  • 资源 (2)
  • 收藏
  • 关注

转载 python3 help().py

"""参考:https://www.runoob.com/python/python-func-help.html内容:python3 help()知识点:描述help() 函数用于查看函数或模块用途的详细说明。语法help([object])参数说明:object -- 对象;返回值返回对象帮助信息。"""# >>>help('sys') # ...

2019-10-25 17:51:51 202

转载 python3 dir().py

"""参考:https://www.runoob.com/python/python-func-dir.html内容:python3 dir()知识点:描述dir() 函数,不带参数时,返回当前范围内的变量、方法和定义的类型列表;带参数时,返回参数的属性、方法列表。如果参数包含方法__dir__(),该方法将被调用。如果参数不包含__dir__(),该方法将最大限度地收集参数信息...

2019-10-25 17:34:19 263

转载 python3 读写shp文件.txt

参考:https://www.jianshu.com/p/7b182ea6aa02参考:https://blog.csdn.net/GISuuser/article/details/816642231.安装pip install pyshppip3 install pyshp2.知识点:shapeType,文件类型。NULL = 0POINT = 1POLYLINE = ...

2019-10-25 09:26:26 1658

原创 python3 列表推导式.py

"""内容:列表推导式列表推导式(list comprehension) 列表推导式是用可迭代对象依次生成列表内元素的方式: 列表推导式是表达式语法: [ 表达式 for 变量 in 可迭代对象 ] 或 [ 表达式 for 变量 in 可迭代对象 if 条件表达式]说明: 1. 先从可迭代对象取一个值,用变量绑定 2. 调用表达式,把当前的表达式结果追...

2019-10-24 16:58:56 185

原创 python3 getPath_extension.py

"""时间:2019/11/6内容:文件路径、文件名、文件扩展名。模块名:pathFileName_extension.py"""def getPathName(pathFile): """ 功能:获取文件名及其路径。 :param pathFile: 文件及其路径。类似:I:\\Gaoshengjie\\龙哥任务\\读shp\\31-CS\\31-CS.s...

2019-10-24 09:58:49 658

转载 css transform_rotateZ(a).html

<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>rotateZ</title> <style> /*参考:https://developer.mozilla.org/zh-CN/do...

2019-10-22 17:34:24 206

转载 css transition_transform_scale()_rotate().html

<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>transition_transform_scale_rotate</title> <style> /*参考:https://www....

2019-10-22 14:58:15 133

转载 js require__export_import__import()模块化编程.txt

参考:https://www.cnblogs.com/linziwei/p/7853305.html在研究react和webpack的时候,经常看到在js文件中出现require,还有import,这两个都是为了JS模块化编程使用。CSS的是@import1.ES6 模块的设计思想,是尽量的静态化,使得编译时就能确定模块的依赖关系,以及输入和输出的变量。Require是Common...

2019-10-21 16:24:38 338

转载 js window.history.pushState()_replaceState()_popstate事件.txt

参考:https://blog.csdn.net/m0_37999242/article/details/794150551.window.history对象,用来保存浏览历史。如果当前窗口先后访问了三个网址,那么history对象就包括三项。history.length // 32.history对象提供了一系列方法,允许在浏览历史之间移动。back():移动到上一个访问页...

2019-10-18 10:46:10 874

转载 css text-decoration.html

<!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>text-decoration</title> <style> /*参考:https://www.w3school.com.cn/cs...

2019-10-15 14:59:05 101

原创 css a标签:link:visited:focus:hover:active.html

<!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>a:link:visited:focus:hover:active</title> <style> /*参考:https://blog...

2019-10-15 14:35:35 291

转载 js HTMLElementObject_focus_blur方法.html

<!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>HTMLElementObject_focus_blur方法</title> <style> a:focus, a:active {...

2019-10-15 11:29:22 187

转载 css background.html

<!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>css background</title> <style> /*参考:https://www.w3school.com.cn/css...

2019-10-09 17:06:13 115

转载 css background-origin.html

<!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>css background-origin</title> <style> /*参考:https://www.w3school.com...

2019-10-09 17:05:28 88

转载 css background-clip.html

<!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>css background-clip</title> <style> /*参考:https://www.w3school.com.c...

2019-10-09 17:04:26 100

转载 css background-attachment.html

<!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>background-attachment</title> <style> /*参考:https://www.w3school.com...

2019-10-09 17:03:30 353

转载 jquery css()_设置属性.html

<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>jquery css()_设置 CSS 属性</title> <script src="https://cdn.staticfile.org/jquery/1.10.2/jqu...

2019-10-09 10:54:59 102

转载 jquery css()_返回属性.html

<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>jquery css()_返回css属性</title> <script src="https://cdn.staticfile.org/jquery/1.10.2/jquer...

2019-10-09 10:47:45 122

arcgis api for js 加载webMercator天地图.rar

arcgis api for js 加载web Mercator天地图。

2019-07-11

pywebsocket_py3.zip

一个支持 WebSocket 的服务,支持python3的pywebsocket。

2018-12-02

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除