/
Simple banner code
Simple banner code
This is some simple code to display a div with content which changes:
function SCRATCHhello(Content){
console.log("Hello");
var D = document.querySelector(".SPLASHbanner");
D.innerHTML = Content;
}
var SCRATCHquotes=
['Iguana changed my life',
'Iguana makes work more efficient',
'I love Iguana'];
function SCRATCHquote(i){
i= i %SCRATCHquotes.length;
SCRATCHhello(SCRATCHquotes[i])
}
var SCRATCHindex=0;
setInterval(function(){
SCRATCHindex=SCRATCHindex+1;
SCRATCHquote(SCRATCHindex);
}, 3000);
How can change the interval to 5 seconds?
How can make it convenient to write longer quotes?
How could we add formatting to the quotes?
How could we style the div?
, multiple selections available,
Related content
Getting Started with HTML
Getting Started with HTML
More like this
Source code to the progress function
Source code to the progress function
More like this
Lots of concepts from the command line carry across to the Javascript console
Lots of concepts from the command line carry across to the Javascript console
Read with this
How can do some funky thing with strings that I don't know?
How can do some funky thing with strings that I don't know?
More like this
How do we make a Javascript sandbox
How do we make a Javascript sandbox
More like this
Javascript Strings
Javascript Strings
More like this