uni

Thing1's amazing uni repo
Log | Files | Refs | Submodules

animate.js (312B)


      1 toggle = false;
      2 
      3 function animateAOL() {
      4 	toggle = !toggle;
      5 	if (toggle) {
      6 	document.getElementById("aolBanner").innerHTML = "<marquee scrollamount=7><p height=1>Get online with <a href='https://www.aol.com/'>AOL</a> today!</p></marquee><hr>"
      7 	} else {
      8 	document.getElementById("aolBanner").innerHTML = ""
      9 	}
     10 }
     11