added read ahead hard funbox

This commit is contained in:
root 2021-02-24 11:34:48 -05:00
parent 38e35a60a9
commit 8917a67b13
3 changed files with 15 additions and 1 deletions

View file

@ -355,7 +355,11 @@ async function activateFunbox(funbox, mode) {
restartTest();
}
if (funbox === "read_ahead" || funbox === "read_ahead_easy") {
if (
funbox === "read_ahead" ||
funbox === "read_ahead_easy" ||
funbox === "read_ahead_hard"
) {
setHighlightMode("letter", true);
restartTest();
}

View file

@ -84,6 +84,11 @@
"type": "style",
"info": "Only the current word is invisible."
},
{
"name": "read_ahead_hard",
"type": "style",
"info": "Current and the next two words are invisible."
},
{
"name": "memory",
"type": "script",

View file

@ -0,0 +1,5 @@
#words .word.active:nth-of-type(n + 2),
#words .word.active:nth-of-type(n + 2) + .word,
#words .word.active:nth-of-type(n + 2) + .word + .word {
color: transparent;
}