- 浏览: 571345 次
- 性别:
- 来自: 济南
-
最新评论
-
mr_xiaoyu:
最终会调用到ScheduledFutureTask#run() ...
ScheduledThreadPoolExecutor -
csmnjk:
谢谢分享!
SSH + Lucene + 分页 + 排序 + 高亮 模拟简单新闻网站搜索引擎 -
qsword555:
public static void main(String ...
ScheduledThreadPoolExecutor -
yun900800:
我的也是就抛了一次异常
ScheduledThreadPoolExecutor -
bjfuzh:
bjfuzh 写道我自己跑了下,那个抛异常的定时器,只执行了一 ...
ScheduledThreadPoolExecutor
文章列表
多张图片合成一张gif图片
- 博客分类:
- css
添加每个帧的图片(Add Image),调整时间间隔,最后选择save as ->gif
svn 回滚到某一个版本
svn log aaa.bak
查到某个文件的版本
svn merge -r新版本:旧版本 文件名
浏览器
LEFT
TOP
IE
10
15
FF
8
8
Opera
8
8
Safari
8
8
边框
ie上默认有2px的边框
和头有关,如果有标准头 则为documentELement有边框
如果没有标准头 则为body有边框
其他的浏览器默认body和html没有边框
margin的话 可以通过body {margin:0}解决
border的话 可以通过body,html{border:none}解决
\uFF01-\uFF5E 是全角的标点
String.fromCharCode(c.charCodeAt(0) - 65248).replace(/\u3000+/g , ' '); 变成半角的
搞定!!!
var
classA
=
function
(){
this
.
prop1
=
1
;
}
classA
.
prototype
.
func1
=
function
(){
var
that
=
this
,
var1
=
2
;
function
a
(){
return
function
png 滤镜的sizingMethod
- 博客分类:
- css
sSize
String
that
specifies or receives one of the following values.
crop
Clips the image to fit the dimensions of the object.
image
Default. Enlarges or reduces the border of the object to fit the dimensions of the image.
scale
Stretc ...
when you want to use custom image cursor , you must promise the format of the image is 'cur' , or ie do not act as what it should be.
There is a good tool for transfer the format of the image to cur , the name is 'ArtCursors'
(w3)在后面位置的会把前面位置的覆盖,
(ie)与前后无关,与读取的时间有关,后加载的会覆盖前面加载的
这就是真理。
animate scrollTop
- 博客分类:
- javascript
$('body').animate({scrollTop : 'xxxx'} , 'slow');
现在已经知道这个可以了。
其他的以后探索吧。
photoshop 弄出一张图片
- 博客分类:
- css
选中图的一部分
ctrl + shift + s
ctrl + n
ctrl + v
选择 图像 + 模式 + 索引颜色
然后保存
queue和dequeue实现了在jquery对象上的队列的进队和出队。
$("#aaa").queue("myFun" , function() {
alert(this);
alert(arguments[0]);
});
在aaa节点上建立一个队列 队列名为myFun 然后往里面放函数 函数中的this执行aaa,arguments[0] 调用的是
从这个队列上出列一个函数,并执行。
$("#aaa").q ...