How can I extend animation delay beyond 8 secs

You can define the delay and duration of a method called .show() using an object called showOptions , for example:

const showOptions = {
    delay: 15000,
    duration: 500
}

$w("#textBook").show("fade", showOptions)

If it is after something happens, then you would have to chain this animations.