摘要:
资料地址http://www.doczj.com/doc/1d2189473-5.html 阅读全文
摘要:
有一个展示内容的表格,会有合并行的需求,应用了Element UI 的table。 Element UI 提供了如下的方法,能够实现跨行 通过给table传入span-method方法可以实现合并行或列,方法的参数是一个对象,里面包含当前行row、当前列column、当前行号rowIndex、当前列 阅读全文
摘要:
https://github.com/goldvideo/h265player 阅读全文
摘要:
https://www.cntofu.com/book/73/index.html https://www.cntofu.com/book/51/index.html 阅读全文
摘要:
解决方法: if (this.flvPlayer) { this.flvPlayer.pause() this.flvPlayer.unload() this.flvPlayer.detachMediaElement() this.flvPlayer.destroy() this.flvPlayer 阅读全文
摘要:
这个按照上一篇文章进行添加webassambly报这种错,原因是因为loadwebassambly函数里传递的路径不对导致的。 阅读全文
摘要:
作为一种比较新的web技术,WebAssembly可能会对web开发带来巨大的影响。随着2月MVP(Minimum Viable Product)版本的发布,WebAssembly的基本特性开始稳定,本文通过一个简单的示例来演示如何在页面上调用一个C++函数。 基本组成 要编写一个可以在浏览器中运行 阅读全文
摘要:
1.打开浏览器 最简单的方法: const cp = require('child_process') cp.exec('start http://127.0.0.1:8889/'); // 自动打开默认浏览器 另一种方法是安装open 依赖包: const open = require('open 阅读全文
摘要:
SharedArrayBuffer对象 SharedArrayBuffer 对象用来表示一个通用的,固定长度的原始二进制数据缓冲区,类似于 ArrayBuffer 对象,它们都可以用来在共享内存(shared memory)上创建视图。与 ArrayBuffer 不同的是,SharedArrayBu 阅读全文
摘要:
1.实现目标:目标是输入一个数组,生成一个列表;通过拖拽排序,拖拽结束后输出一个经过排序的数组。 2.实现思路: 2.1是使用HTML5的drag功能来实现,每次拖拽时直接操作Dom节点排序,拖拽结束后再根据实际的dom节点遍历得出新的数组。 2.2使用mousedown,mouseover等鼠标事 阅读全文