找到 http://w.qq.com/ 这里的彩蛋似乎难不倒cnode的各位大大 这里直接给链接吧:http://codestar.alloyteam.com/ 这两天在微博、空间传开了,这儿也算是打个小小的广告吧,后台也是用nodejs简单搭建,欢迎捧场,哈~
20 回复
第一关: $("input[name=timestamp]").value=new Date().getTime()
第二关: (a) border-radius:50%; (b) border-color: transparent #000; -webkit-transform-origin: top right; -webkit-transform: rotate(-60deg);
第三关有时间再闯
第五关控制台输入,按order的循序就是啦
var items = box.querySelectorAll('.folder');
items = Array.prototype.slice.apply(items);
items.map(function(t){return t.innerHTML});
var data = items.map(function(t){return t.innerHTML});
var n1 = 0, n2 = 0, array = [];
while(n2 < data.length){
n1++;
array.push( data.slice(n2, n2 + n1));
n2 += n1;
}
function pick(a, m, n, s){
if(m == null){ m=0;n=0;s='';return pick(a, m, n, s);}
if(m == a.length){
s = s.split(',');
s.shift();
todo(a, s);
return;
}
s = s + ',' + n;
pick(a, m+1, n, s);
pick(a, m+1, n+1, s);
}
var max = {num: 0, order: null};
function todo(a, s){
var temp = 0;
s.forEach(function(n, i){
temp += ~~a[i][n];
});
if(temp > max.num){
max.num = temp;
max.order = s + '';
}
}
pick(array);
console.log(max);