Javascripts > Misc Javascripts > Uphill Text Script
Script Title: Uphill Text Script
Description: This script makes your message's size get larger. When it gets to it's maximum size, it starts over.
Example: Available
Copy the following code between the <BODY></BODY> tags of your html page.<!--Change "Welcome to our site" to your own message--> <script> /* Uphill Text effect By Website Abstraction (http://wsabstract.com) and Java-scripts.net (http://www.java-scripts.net) */ function uphilltext(text){ var temptext=text.toUpperCase() var size=1 //go through the text, letter by letter for (i=0;i<temptext.length;i++){ document.write(temptext.charAt(i).fontsize(size).bold()) if (size<7) size++ else size=1 } } uphilltext("Welcome to our site!") </script>
Enter your name and email address to have this script sent right to your Inbox for later viewing. First Name Last Name Email