Baidu IFE warmup tasks solutions

Feb 15, 2017

IFE Answers

1.umbrella

Use your imagination, you could even draw three lines to pass this task.

2.base64

Use Ctrl+A select whole page you will see a encrypted string, use online decrypt tools to decode this string to get the next task url.

3.403

get the window’s height and set the lock numbers equal to that value.

$(window).height;

4.Use css transform

transform includes two attributes named scale & rotate

example:

{
  transform: scale(-1,1) rotate(20deg);
}

5.Follow the question orders.

You can use three APIs:

ball.at(82, 46, ball => ball.turnRight())
ball.at(82, 138, ball => ball.turnLeft())
ball.at(82, 46, ball => ball.turnBack())
//Use follwing code to encapsulate above methods.
var right = (x,y) => ball.at(x, y, ball => ball.turnRight())
var left = (x,y) => ball.at(x, y, ball => ball.turnLeft())
var back = (x,y) => ball.at(x, y, ball => ball.turnBack())
//Then just call
right(82,46)
left(82,138)
back(82,46)

Do Not Remain Silent

Back To Top