实例 a:link {color:#FF0000;} /* 未访问的链接 */ a:visited {color:#00FF00;} /* 已访问的链接 */ a:hover {color:#FF00FF;} /* 鼠标划过链接 */ a:active {color:#0000FF;} /* 已选中 ...
分类:
Web程序 时间:
2017-10-09 17:40:48
阅读次数:
224
HTML元素 开始标签常被称为起始标签(opening tag),结束标签常称为闭合标签(closing tag) HTML 文档由嵌套的 HTML 元素构成 以上实例包含了七个 HTML 元素 <Html>元素,拥有开始标签 <html> ,以及一个结束标签 </html>.是整个HTML文档的主 ...
分类:
Web程序 时间:
2017-10-08 16:08:48
阅读次数:
183
看到有人问 size() resize() reserve() capacity() 之前百度里面有个答案感觉有些问题 借用他的比喻重新回答一下 capacity() 返回车里面有多少张座椅 reserve(int x) 要求车里面可以放下x个座椅; 如果x小于capacity(),即小于车里面的座 ...
分类:
编程语言 时间:
2017-10-08 14:48:55
阅读次数:
162
以下内容参考黑客防线2012合订本354页 MSDN 原话: The PsSetCreateProcessNotifyRoutineEx routine registers or removes a callback routine that notifies the caller when a p ...
# Copyright 2015 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use th... ...
分类:
其他好文 时间:
2017-10-01 23:03:55
阅读次数:
300
1. Linux系统中用户切换的命令为su,语法为: su [-fmp] [-c command] [-s shell] [--help] [--version] [-] [USER [ARG]] 参数说明 -f , –fast:不必读启动文件(如 csh.cshrc 等),仅用于csh或tcsh两 ...
分类:
系统相关 时间:
2017-09-30 09:57:58
阅读次数:
204
1.刷新页面 Mac: command+r 或 command + shift + r Window: Ctrl + r 或 Ctrl + Shift + r 或 F5 或 Shift + F5 加Shift代表强刷 2.撤销 Mac: 撤回上一次关闭页面 command + shift + t 切 ...
分类:
其他好文 时间:
2017-09-27 23:57:40
阅读次数:
405
3d舞台 设置 perspective(景深): length, 可以设置overflow:hidden 3d舞台下 -> 3d元素容器 设置 transform-style: preserve-3d,不可设置 overflow: hidden(其如同transform-style:flat;) 隐 ...
分类:
Web程序 时间:
2017-09-26 14:51:35
阅读次数:
185
nearest neighbor algorithm -- greedy 1开始的点A(不同则答案不同) 2选择cost最小的点D 重复 3最后回到A,加总 knn in scala --intuition /** @author wyq * @version 1.0 * @date Sun Sep ...
分类:
其他好文 时间:
2017-09-23 10:37:14
阅读次数:
234