This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #topnav {width:960px;height:50px;margin-top:0;background:url(images/topnavBG.jpg);} | |
| #topnav ul{width:759px;height:40px;background:url(images/TNSprites.jpg);margin:0;padding:0;position:relative;} | |
| #topnav ul li {margin:0;padding:0;list-style:none;position:absolute;top:0;background:none;} | |
| #topnav ul li, #topnav ul li a {height:40px;display:block;} | |
| #topnav ul li a {text-indent:-9000px;text-decoration:none;} | |
| #topnav ul li a:focus {-moz-outline-style:none;outline:none;} | |
| #TNhome {left:0; width:71px;} | |
| #TNcourses {left:72px; width:154px;} | |
| #TNgeneralinfo {left:226px; width:157px;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script language="JavaScript"> | |
| function limiter( event, field, limit ) { | |
| backspace = 8; | |
| del = 46; | |
| tab = 9; | |
| if( !event ) event = window.event; | |
| key = ( event.which ? event.which : event.keyCode ); | |
| //display_field.innerHTML += String.fromCharCode(key); | |
| field_text = field.value; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Based off of "sweep" by Barragan: | |
| https://www.arduino.cc/en/Tutorial/Sweep | |
| */ | |
| #include <Servo.h> | |
| Servo myservo; // create servo object to control a servo | |
| int pos = 90; // variable to store the servo position | |
| int const potPin = A0; |
OlderNewer