码迷,mamicode.com
首页 >  
搜索关键字:pause    ( 1331个结果
视频和音频
1.音频Audio audio常用的属性和方法 play()播放、pause()暂停 volume调节音量,设置的值是从0-1,0就相当于静音,1就是百分百的音量 muted设置静音,true就静音,false不静音 currentTime,获取和设置当前播放到什么位置 onplay播放的事件 on ...
分类:其他好文   时间:2019-06-01 19:07:54    阅读次数:129
顺序栈
#include "stdafx.h" #include using namespace std; #define MAXSTACK 10 typedef int StackEntry; typedef struct node { StackEntry entry[MAXSTACK]; int to... ...
分类:其他好文   时间:2019-05-24 00:45:04    阅读次数:91
split函数实现
#include #include #include #include using namespace std; void addstr(const string s, int i, int j, vector &result) {//从i到分割点j部分子串加入到result,需判断子串是否全为空,... ...
分类:其他好文   时间:2019-05-23 21:21:29    阅读次数:121
VC(Visual Studio C++)虚拟键VK值列表
键盘VK键值列表 /* Virtual Keys, Standard Set*/ VK_LBUTTON 0x01 VK_RBUTTON 0x02 VK_CANCEL 0x03 VK_MBUTTON 0x04 #define VK_LBUTTON 0x01 //鼠标左键 #define VK_RBUT ...
分类:编程语言   时间:2019-05-23 16:06:18    阅读次数:577
mariadb集群配置(主从和多主)
mariadb集群配置(主从和多主) mariadb主从 主从多用于网站架构,因为主从的同步机制是异步的,数据的同步有一定延迟,也就是说有可能会造成数据的丢失,但是性能比较好,因此网站大多数用的是主从架构的数据库,读写分离必须基于主从架构来搭建 主从架构主的数据可以同步到从上,从也可以读写数据,但是 ...
分类:数据库   时间:2019-05-21 14:46:22    阅读次数:244
k8s
安装k8s的时候需要从k8s.gcr.io拉取镜像 docker pull mirrorgooglecontainers/kube-apiserver:v1.14.0docker pull mirrorgooglecontainers/kube-controller-manager:v1.14.0d ...
分类:其他好文   时间:2019-05-21 13:10:36    阅读次数:93
实验四
1. 2. #include <iostream> using namespace std; #include "arraylnt.h" int main() { // 定义动态整型数组对象a,包含2个元素,初始值为0 ArrayInt a(2); a.print(); // 定义动态整型数组对象b ...
分类:其他好文   时间:2019-05-20 17:38:10    阅读次数:105
吴裕雄 Bootstrap 前端框架开发——Bootstrap 字体图标(Glyphicons):glyphicon glyphicon-pause
Pause Glyph Pause icon: Pause icon as a link: ... ...
分类:其他好文   时间:2019-05-20 13:17:03    阅读次数:98
k8s config配置文件
接着上面的博客继续写 pwd -> /etc/kubernetes cat config cat controller-manager cat kubelet cat proxy cat scheduler ...
分类:其他好文   时间:2019-05-18 23:50:51    阅读次数:591
实验四
实验结论: (1) #ifndef BATTERY_H #define BATTERY_H class Battery { public: Battery(int x=70); int showbattery(); int batterySize; }; #endif #ifndef CAR_H # ...
分类:其他好文   时间:2019-05-18 15:54:59    阅读次数:131
1331条   上一页 1 ... 31 32 33 34 35 ... 134 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!