import numpy from matplotlib import pyplot from matplotlib import animation def update_points(num): point_ani.set_data(x[num],y[num]) #更新点的位置,将这里的(x[n ...
分类:
其他好文 时间:
2020-06-23 19:05:16
阅读次数:
90
//APP定位 getAddress() { console.log(77777); if (navigator.geolocation) { navigator.geolocation.getCurrentPosition( this.showPosition, this.showError ); ...
分类:
移动开发 时间:
2020-06-23 17:25:29
阅读次数:
176
# -*- coding:utf-8 -*- __author__ = 'admin' name1 = input("Please your father name:") name2 = input("请输入您母亲的姓名:") #使用逗号分隔,打印各部份有空格 print("您父亲的名字:", na ...
分类:
编程语言 时间:
2020-06-22 15:04:39
阅读次数:
64
问题:在页面上添加了动画,切换页面后会报错,如下图: 报错是因为离开有动画的页面后,没有取消动画 // requestAnimationFrame方法启动的动画 this.timeIndex = requestAnimationFrame((time) => draw(time, canvas, c ...
分类:
其他好文 时间:
2020-06-22 11:03:25
阅读次数:
113
一、html基础 1、基本组成结构 <html> <head> <title> <body>等标签 2、常用标签 *表单<form action="提交地址(url)" method="提交方式(post/get)" [name="表单名称"]>//文本框 <input type="text" na ...
分类:
编程语言 时间:
2020-06-21 20:12:41
阅读次数:
56
在学习DNS的时候,了解到/etc/hosts这个文件也是能做域名解析这个工作,但是当服务器既配置了hosts,有配置了DNS的时候,会先执行哪个呢?查阅资料后发现了/etc/nsswitch.conf。 1、nsswithch.conf:服务搜索顺序 文件/etc/nsswitch.conf(na ...
分类:
其他好文 时间:
2020-06-21 19:37:19
阅读次数:
77
animation动画简介 通过类似Flash动画的关键帧来声明一个动画,在animation属性中调用关键帧声明的动画实现一个更为复杂的动画效 一、transform(转换动画、直接动画) rotate(旋转)包含三种状态,x、y、z三轴的变化, rotatex、rotatey、rotatez(默 ...
分类:
Web程序 时间:
2020-06-21 19:34:44
阅读次数:
480
ERROR Failed to compile with 1 errors 17:15:28 error in ./src/assets/scss/config.scss Syntax Error: SyntaxError (7:1) Unknown word 5 | 6 | // 常规字体大小设置 ...
分类:
Web程序 时间:
2020-06-21 17:52:50
阅读次数:
128
NULL 这个值表示 UNKNOWN(未知):它不表示“”(空字符串)。对 NULL 这 个值的任何比较都会生产一个 NULL 值。您不能把任何值与一个 NULL 值进行比 较,并在逻辑上希望获得一个答案。 使用 IS NULL 来进行 NULL 判断 ...
分类:
其他好文 时间:
2020-06-21 16:27:01
阅读次数:
546
C=conv2(A,B,'shape') A:输入矩阵/图像 B:卷积核 当shape=full时,返回全部二维卷积结果,即返回C的大小为(ma+mb-1)x(na+nb-1) shape=same时,返回与A同样大小的卷积中心部分 shape=valid时,不考虑边界补零,即只要有边界补出的零参与 ...
分类:
其他好文 时间:
2020-06-21 13:36:36
阅读次数:
48