diff --git a/static/funbox/_list.json b/static/funbox/_list.json index f410e79a6..d30977118 100644 --- a/static/funbox/_list.json +++ b/static/funbox/_list.json @@ -74,15 +74,20 @@ "type": "script", "info": "React quickly! Only one future word is visible." }, + { + "name": "read_ahead_easy", + "type": "style", + "info": "Only the current word is invisible." + }, { "name": "read_ahead", "type": "style", "info": "Current and the next word is invisible!" }, { - "name": "read_ahead_easy", + "name": "read_ahead_hard", "type": "style", - "info": "Only the current word is invisible." + "info": "Current and the next two words are invisible!" }, { "name": "memory", diff --git a/static/funbox/read_ahead_hard.css b/static/funbox/read_ahead_hard.css new file mode 100644 index 000000000..6da2218d7 --- /dev/null +++ b/static/funbox/read_ahead_hard.css @@ -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; +}