关于动画的基础属性: 动画结束后的状态 是否保留动画效果 animation-fill-mode: forwards;无限次播放animation-iteration-count:infinite;动画延时animation-delay:1s;动画暂停animation-play-state: pa ...
分类:
其他好文 时间:
2016-12-13 23:29:48
阅读次数:
192
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> *{ margin: 0; padding: 0; } .box{ width: 180px; height: 30 ...
分类:
Web程序 时间:
2016-12-12 14:51:44
阅读次数:
263
HANDLE hSemaphore; cout<<1<<endl; hSemaphore = CreateSemaphore( NULL, 0, 10000, NULL); //初始 0个资源 ReleaseSemaphore(hSemaphore, 1, NULL); //+1 ReleaseSe ...
分类:
其他好文 时间:
2016-12-12 14:49:36
阅读次数:
118
Consider the string s to be the infinite wraparound string of "abcdefghijklmnopqrstuvwxyz", so s will look like this: "...zabcdefghijklmnopqrstuvwxyza ...
分类:
其他好文 时间:
2016-12-07 23:34:21
阅读次数:
187
Find the nth digit of the infinite integer sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... Note:n is positive and will fit within the range of a 32-bi ...
分类:
其他好文 时间:
2016-12-04 14:22:32
阅读次数:
216
做了一些移动端的产品,发现一些滚动效果很多会使用 iscroll 作为底层库(如阿里小蜜)。iscroll 的文档已经好久没更新了,而且比较简单,经常需要直接读源码。这里写一篇总结,作为对 iscroll API的整理。而 iscroll 的库 probe,lite,zoom,infinite 和标 ...
分类:
其他好文 时间:
2016-12-03 07:40:16
阅读次数:
290
未分区的表,只能存储在一个FileGroup中;对Table进行分区后,每一个分区都存储在一个FileGroup,或分布式存储在不同的FileGroup中。对表进行分区的过程,是将逻辑上完整的一个表,按照特定的字段拆分成多个分区,分散到(相同或不同的)FileGroup中,每一个部分叫做表的一个分区 ...
分类:
其他好文 时间:
2016-12-02 21:22:31
阅读次数:
172
cursor其他取值 鼠标移入 auto :标准光标 default :标准箭头 pointer :手形光标 wait :等待光标 text :I形光标 vertical-text :水平I形光标 no-drop :不可拖动光标 not-allowed :无效光标 help :帮助光标 all-sc ...
分类:
Web程序 时间:
2016-12-02 11:36:53
阅读次数:
307
移动端的开发也有这种hack,来解决可能的卡顿问题:css-webkit-transform: translate3d(0, 0, 0);css3动画大致分三类:1.变形transform[变形基础]rotate()[旋转]scale()[缩放]translate()[位移]skew()[倾斜]ma... ...
分类:
Web程序 时间:
2016-12-02 09:47:02
阅读次数:
925
You are given two jugs with capacities x and y litres. There is an infinite amount of water supply available. You need to determine whether it is poss ...
分类:
其他好文 时间:
2016-11-28 12:55:51
阅读次数:
198