在JS中,如果希望在页面加载完成后执行某些操作的话,一般的写法如下: window.onload = function(){// some thing to do}; 但 是,onload函数的执行并不是我们通常所理解的浏览器构建完html页面对应的DOM树后立刻执行,而是要等到页面中所引用的图片等 ...
分类:
其他好文 时间:
2018-05-08 17:32:10
阅读次数:
195
折线图 Axes3D.plot(xs, ys, *args, **kwargs) 散点图 Axes3D.scatter(xs, ys, zs=0, zdir='z', s=20, c=None, depthshade=True, *args, **kwargs) 线框图 Axes3D.plot_wi ...
分类:
其他好文 时间:
2018-03-24 12:43:39
阅读次数:
2593
```go package main import ( "fmt" "os" "os/signal" "time" ) func main() { c := make(chan os.Signal, 1) signal.Notify(c) ticker := time.NewTicker(time. ...
分类:
其他好文 时间:
2018-03-22 01:37:28
阅读次数:
158
目标 选取几个比特币交易量大的几个交易平台,查看对应的API,获取该市场下货币对的ticker和depth信息。我们从网站上选取4个交易平台:bitfinex、okex、binance、gdax。对应的交易对是BTC/USD,BTC/USDT,BTC/USDT,BTC/USD。 一、ccxt库 开始 ...
分类:
编程语言 时间:
2018-02-03 21:53:55
阅读次数:
648
1.basic "numpy.meshgrid" 由一维数组到二维数组,用于生成网格数据 "matplotlib" python绘图库 2.code 3.result ...
分类:
其他好文 时间:
2018-01-26 17:07:16
阅读次数:
264
Global Statistics: Common seen methods as such 1. Mean 2. Median 3. Standard deviation: the larger the number means it various a lot. 4. Sum. Rolling ...
分类:
编程语言 时间:
2017-12-21 22:56:59
阅读次数:
231
.detail position: fixed z-index: 100 top: 0 left: 0 width: 100% height: 100% overflow: auto .detail-wrapper width: 100% min-height: 100... ...
分类:
Web程序 时间:
2017-12-12 21:10:53
阅读次数:
249
1.工具 matplotlib numpy 2.matplotlib使用 import matplotlib.pyplot as plt #plt用于显示图片import matplotlib.image as mping #mping用于读取图片import datetime as dtimpor ...
分类:
编程语言 时间:
2017-11-02 11:15:54
阅读次数:
531
真实的应用场景是:在测试收包的顺序的时候,加了个 tick 就发现丢包了 那么来看一个应用例子: 输出结果如下: 问题出在这个select里面: 当两个 case 条件都满足的时候,运行时系统会通过一个伪随机的算法决定哪个case将会被执行。所以当 tick.C 条件满足的那个循环,有某种概率造成 ...
分类:
其他好文 时间:
2017-10-05 21:23:43
阅读次数:
170
官网教程-生命周期:http://developer.egret.com/cn/2d/lifecycle 主要是在游戏置于后台时,关闭游戏逻辑、渲染逻辑和背景音乐,保证更好的用户体验。 一 Egret 5.1版本新API 5版本引入了egret.Ticker、egret.lifecycle API来 ...
分类:
其他好文 时间:
2017-09-22 13:02:16
阅读次数:
1536