Any items you want to fade-out are given a name e.g. htmlclass=”banner”. All the objects can also have any standard animations applied; in this example they are simply standard fade-in (Web Animations). This code is placed in the Web HTML(body): <script> setTimeout(function(){$('.banner').fadeOut(3000);},8000); </script> The numerics are in milliseconds and determine the length of time the objects remain in view and the length of the fadeOut. You must have an object with the name “UsesJQuery” - it can be placed off-page.