码迷,mamicode.com
首页 > 其他好文 > 详细

记一次无聊的视力测试

时间:2015-07-24 17:56:30      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

http://www.lezyo.com/special/game/color/?from=singlemessage&isappinstalled=

技术分享

 

Chrome:

F12-Console输入

setInterval(function () {
var first = ‘‘;
var firstCount = 0;
var firstIndex = 0;

var second = ‘‘;
var secondCount = 0;
var secondIndex = 0;
$("#box").children("span").each(function (i) {
if (i == 0) {
first = $(this).css("background-color");
firstIndex = i;
firstCount++;
return;
}

if (first == $(this).css("background-color")) {
firstIndex = i;
firstCount++;
} else {
second == $(this).css("background-color");
secondIndex = i;
second++;
}
});
if (firstCount == 1) {
$("#box").children("span").eq(firstIndex).click();
} else {
$("#box").children("span").eq(secondIndex).click();
}
}, 1);

 

技术分享
技术分享
技术分享

记一次无聊的视力测试

标签:

原文地址:http://www.cnblogs.com/shenqiboy/p/4673852.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!