본문 바로가기

javascript

(248)
페이지 내용 분석기 .
퀴즈퀴즈 Quiz! Quiz! 질문내용: 당신의 답안지: Who Plays Ethan Hunt in Mission Impossible 2? What means the 3 W's on the Internet? What is the cappital of Denmark? On wich adress did you find this script? Was Elvis a singer Answers to the Questions: Question #1 Tom Cruise Question #2 World Wide Web Question #3 Copenhagen Question #4 www.javascript.co.kr
텍스트가 FADE 되면서 나타나는 스크립트 효과 //  texts: //  Your messages wich may contain regular html tags but //  must at least contain: [ ] //  Use single quotes [ ' ] in your html only. If you need //  a double quote in the message itself use an escape //  sign like this: [ \" ]  (not including the brackets) // 여기서부터 원하시는 텍스트를 삽입합니다 var texts = new Array( "A D D", "this", "J a v a S c r i p t", "to", "Your Site Today!"); // 여기까지 텍스트 ..
경고창 띄우기 - 폼버튼, 그리고 onMouseover .... Or.... Confirm & Alert
매일 새로운 내용으로 속담 보여주기 Daily Tip:
반짝이는 텍스트 링크 http://www.javascript.co.kr">Let's Dance !! It's Dance Time!!
레이어를 이용한 하이퍼링크 설명창 미리 띄우기 Home Page What's New? Site Contents Java Script Forum JavaScript FAQs
마우스 커서를 따라다니는 불렛 http://www.javascript.co.kr--> var nDots = 7; var Xpos = 0; var Ypos = 0; var DELTAT = .01; var SEGLEN = 10; var SPRINGK = 10; var MASS = 1; var GRAVITY = 50; var RESISTANCE = 10; var STOPVEL = 0.1; var STOPACC = 0.1; var DOTSIZE = 11; var BOUNCE = 0.75; var isNetscape = navigator.appName=="Netscape"; var followmouse = true; var dots = new Array(); init(); function init() { var i = 0; for (i = 0..