웹마스터 팁
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
강추!! 요리조리 날라다니는 놈을 잡아랏...!! ;;
2002.06.14 16:28
미리보기 >> http://slowplus.com/test_fly.html
---------------------------------------------------------------------------------
<SCRIPT LANGUAGE="JavaScript" src="http://slowplus.com/fly.js"></SCRIPT>
<div id="imgg1" style="position:absolute; top:200px; left:300px; visibility:hidden; z-index:10">
<script language="JavaScript1.2">
document.write('<a href="http://slowplus.com/"><img src="slowplus.gif" border=0 name=image1></a>');
</script>
---------------------------------------------------------------------------------
요기서 http://slowplus.com/ 은 날라다니는 이미지를 잡았을때 들어갈곳의 주소
slowplus.gif 은 날라다닐 이미지..^-^
잘 응용해서 멋지게 사용하세요..^^
저는 이벤트홍보용으로 쓴적이 있는데..;;
written by Kir / in S.P (html 체크를 못해서 로고대신으로;;;;;;;)
---------------------------------------------------------------------------------
<SCRIPT LANGUAGE="JavaScript" src="http://slowplus.com/fly.js"></SCRIPT>
<div id="imgg1" style="position:absolute; top:200px; left:300px; visibility:hidden; z-index:10">
<script language="JavaScript1.2">
document.write('<a href="http://slowplus.com/"><img src="slowplus.gif" border=0 name=image1></a>');
</script>
---------------------------------------------------------------------------------
요기서 http://slowplus.com/ 은 날라다니는 이미지를 잡았을때 들어갈곳의 주소
slowplus.gif 은 날라다닐 이미지..^-^
잘 응용해서 멋지게 사용하세요..^^
저는 이벤트홍보용으로 쓴적이 있는데..;;
written by Kir / in S.P (html 체크를 못해서 로고대신으로;;;;;;;)
댓글 6
-
박세욱
2002.06.14 18:36
좋은소스네요.. 감사합니다 ^-^ -
박세욱
2002.06.14 18:37
속도조절은.. http://slowplus.com/fly.js파일 수정해야되는거죠? -
날개양^-^-*
2002.06.21 18:28
와우'ㅅ' 먼진데요오!!^^; -
날개양^-^-*
2002.06.21 18:30
혹시 필요하신분 계시려나;
http://slowplus.com/fly.js의 소스입니다'-';
var speed=150; //속도 조절합니다.(1/1000초)
var change=300; //방향전환 속도를 조절합니다.(1/1000초)
var xmax=15; //한번에 좌우로 움직이는 거리의 최대값(pixel)
var ymax=15; //한번에 상하로 움직이는 거리의 최대값(pixel)
var isNS=(navigator.appName=="Netscape");
var _all='all.';
var _style='.style';
var _visible='visible';
var w_x, w_y, x, y, tx, ty, xo, yo, imgg1;
var incrx=2;
var incry=8;
var xdir=true;
var ydir=true;
if(isNS){
_all='';
_style='';
_visible='show';
}
function init(){
imgg1=eval('document.'+_all+'imgg1'+_style);
resize();
moveimg(w_x/4,w_y/4);
imgg1.visibility=_visible;
animate();
changedirs();
regenerate2();
}
function resize(){
if(isNS){
w_x=window.innerWidth-document.imgg1.document.width;
w_y=window.innerHeight-document.imgg1.document.height;
}else{
w_x=document.body.clientWidth-document.image1.width;
w_y=document.body.clientHeight-document.image1.height;
}
}
function changedirs(){
xdir=(Math.floor(Math.random()*2)==0);
ydir=(Math.floor(Math.random()*2)==0);
incrx=Math.floor(Math.random()*xmax);
incry=Math.floor(Math.random()*ymax);
setTimeout('+ 'changedirs()',change);
}
function animate(){
if(isNS){
tx=imgg1.left;
ty=imgg1.top;
xo=pageXOffset;
yo=pageYOffset;
}else{
tx=imgg1.pixelLeft;
ty=imgg1.pixelTop;
xo=document.body.scrollLeft;
yo=document.body.scrollTop;
}
if(ydir){
if((ty+incry)>(w_y+yo)){ ydir=false; moveimg(0,-incry); } else { moveimg(0,incry); }
}else{
if((ty-incry)<yo){ ydir=true; moveimg(0,incry); } else { moveimg(0,-incry); }
}
if(xdir){
if((tx+incrx)>(w_x+xo)){ xdir=false; moveimg(-incrx,0); }else{ moveimg(incrx,0); }
}else{
if((tx-incrx)<xo){ xdir=true; moveimg(incrx,0); }else{ moveimg(-incrx,0); }
}
setTimeout('animate()',speed);
}
function moveimg(dx,dy){
if(isNS){
imgg1.moveBy(dx,dy);
}else{
imgg1.pixelTop+=dy;
imgg1.pixelLeft+=dx;
}
}
function hidebutterfly(){
if (document.all)
document.all.imgg1.style.visibility="hidden" ;
else if (document.layers)
document.imgg1.visibility="hide";
}
function regenerate(){
window.location.reload() ;
}
function regenerate2(){
if (document.layers)
setTimeout("window.onresize=regenerate",400);
}
function getCookieVal (offset) {
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0)
break;
}
return null;
}
function getPoint() {
pArray = new Array(1,5,10,50,100);
point = Math.floor((Math.random()*1000000));
if (point == 1) index = 5;
else if ( 1 < point && point <= 1000 ) index = 4;
else if ( 1000 < point && point <= 2000) index = 3;
else if ( 2000 < point && point <= 12000) index = 2;
else if ( 12000 < point && point <= 22000) index = 1;
else index = 0;//if ( 22 < point && point <= 1000) index = 1;
//else index = 0;
return pArray[index];
}
if (document.all)
window.onresize=resize
window.onload=init
- -; 만약 저작권에 침해 된다면 쪽지날려주세요..^^;
삭제할께요..^^; -
김상수
2004.10.21 19:26
성인 광고창 떠욧. ㅗ -
제로매니아
2005.03.11 17:12
이런분은 강퇴 시켜야 합니다. 凸
제목 | 글쓴이 | 날짜 |
---|---|---|
폼의 입력 값의 공백 및 자릿 수 검사 코드 [1] | Technician | 2002.07.17 |
사용자가 입력한 키 알아내기(KeyCode) [4] | ZipShin | 2002.07.16 |
인터넷익스플로러 타이틀바에 제목나타내기 [3] | ZipShin | 2002.07.12 |
해상도가 몇인지를 구해주는 스크립트 [3] | ZipShin | 2002.07.07 |
원하는 홈페이지를 시작페이지 설정하기!!!! [3] | 오길호 | 2002.07.05 |
제목이 계속 바뀝니다. [1] | 행복=진만 | 2002.07.03 |
간단한 쿠키 &세션 확인용 | M2Vis | 2002.07.01 |
input버튼으로 뒤로가기 앞으로 가기 만들어보자~~ [1] | ZipShin | 2002.06.26 |
자바스크립트로 메타태그 리프레쉬 효과를 보여주자. [5] | ZipShin | 2002.06.26 |
순수 자바스크립트로 작성된 계산기... [2] | 용가리 | 2002.06.22 |
팝업창에서 부모창 링크 제어하기(노프레임 및 프레임 적용가능) [9] | 양지다컴 | 2002.06.17 |
접속할때마다 바뀌는 제목표시줄 | 오토™ | 2002.06.16 |
강추!! 요리조리 날라다니는 놈을 잡아랏...!! ;; [6] | 키르(絶對) | 2002.06.14 |
배경색과 글자색같이 변화시키기 2 | keymove | 2002.06.14 |
배경색과 글자색같이 변화시키기 | keymove | 2002.06.14 |
클릭으로 배경이미지 변경 [4] | keymove | 2002.06.14 |
웹상에서도 내맘데로 이미지 크기를 조절할 수 있다?? [9] | ▩윤미 | 2002.06.13 |
뭐 다 할줄아시겠지만 -_- absolute positioning [3] | [º^^º]MISO | 2002.06.13 |
랜덤메시지 + 흐르는 메세지 [4] | keymove | 2002.06.13 |
[수정] 랜덤배경음악 + 폼버튼 [1] | keymove | 2002.06.13 |