Bible Garden
¿ì·¯·¯ ´ç½ÅÀÇ ÇÏ´ÃÀ» ¹Ù¶óº¾´Ï´Ù
Àΰ£ÀÌ ¹«¾ùÀ̱⿡ ÀÌÅä·Ï ±â¾ïÇØ Áֽʴϱî?
»ç¶÷ÀÌ ¹«¾ùÀ̱⿡ ÀÌÅä·Ï µ¹º¸¾Æ Áֽʴϱî?
·Î±×ÀΠȸ¿øµî·Ï ºñ¹øºÐ½Ç
 computer
ÄÄÇ»ÅÍ °ü·Ã
ÄÄÇ»Å͸¦ ¸¸ÁøÁö´Â ¿À·¡µÇ¾úÁö¸¸ È¥ÀÚ ÀÎÅͳÝÀ» µÚÁ®°¡¸ç ¹è¿î °ÍµéÀ̶ó
ü°èÀûÀÌÁö ¸øÇÒ ¶§°¡ ¸¹½À´Ï´Ù. ±×·¡µµ ³» ¼ÕÀ¸·Î ³×¹ø° ȨÆäÀÌÁö¸¦ ¸¸µé¸ç
ÇÊ¿äÇÑ °ÍµéÀ» Á¤¸®ÇØ µÑ Çʿ並 ´À²¸¼­ ºÐ·ùÇÏ¿© ¿Ã·Á º¾´Ï´Ù.
¸ÖƼ Ä®¶ó ÆäÀ̵ù ÅؽºÆ® È¿°ú~    (½ºÅ©¸³Æ®)      
    2004-07-20 (È­) 06:45   Á¶È¸:1700    
<html>
<head>
<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<!-- Begin
// add as many or as few messages as you would like
var msg=new Array()
msg[0]="<CENTER>eºñÁî´Ï½º ¹× IT Àü¹®°¡¸¦ À§ÇÑ Áö½Ä ¹Ìµð¾î...</CENTER>";
msg[1]="<CENTER>...ÄÚ¸®¾ÆÀÎÅͳݴåÄÄ...</CENTER>";
msg[2]="<CENTER>¹æ¹®ÇØ º¸¼¼¿ä!! \"<A href='http://korea.internet.com/'>korea.internet.com</A>\"</CENTER>";
msg[3]="<CENTER>¸ÖƼ Ä®¶ó ÆäÀ̵ù ÅؽºÆ® È¿°ú~</CENTER>";

// set your first set of colors.  Use as many or as few as you wish.
var colors1=new Array("ffffff", "eeeeff", "ddddff", "ccccff", "bbbbff", "aaaaff", "9999ff",
"8888ff", "7777ff", "6666ff", "5555ff", "4444ff", "3333ff","2222ff", "1111ff", "0000ff")

//set your second set of colors
// *** must have exactly the same number of colors as the array above ***
var colors2=new Array("ffffff", "ffeeee", "ffdddd", "ffcccc", "ffbbbb", "ffaaaa", "ff9999",
"ff8888", "ff7777", "ff6666", "ff5555", "ff4444", "ff3333", "ff2222", "ff1111", "ff0000")

//set the height of the display in pixels
high=60;

//set the width of the display in pixels
wide=350;

//set the pixel coordinates for the upper left hand corner of the display
Xpos=220;
Ypos=180;

// move the display away from the edges of the background
pad=15;

// set the background color of the display
bgcol="ffffff";

//add a background image if you want.
// *** for no image, just leave empty quotes (ex. cellbg=""; ) ***
cellbg="faderbg.jpg";

// set the font
fntFam="verdana,helvetica,arial";
fntSize=14;

// set how how many seconds you want the message to stay remain at totality.
pause=2.5;


// Do not edit these values below!!!

icolor=0;
mcolor=1;
imsg=0;
spWidth=wide-(2*pad);
totality=false;
glowing=true;
var theMsg="";
var cellcontent="";
pause=pause*1000;
if(cellbg.length>4){cellbg=" background="+cellbg}
else{cellbg="";}

function doPause(){
   totality=false; t=setTimeout("changecolor()",pause);
   }
function initiate(){
   getContentColor();
   getMsg();
   getCellContent();
   if(document.all){
   msgbg.innerHTML=cellcontent;
   msgfade.innerHTML=theMsg;
   msgbg.style.posLeft=Xpos;
   msgbg.style.posTop=Ypos;
   msgfade.style.posLeft=Xpos+pad;
   msgfade.style.posTop=Ypos+pad;
   t=setTimeout("changecolor()",50);}
   if(document.layers){
   document.msgbg.document.write(cellcontent);
   document.msgbg.document.close();
   document.msgfade.document.write(theMsg);
   document.msgfade.document.close();
   document.msgbg.left=Xpos;
   document.msgbg.top=Ypos;
   document.msgfade.left=Xpos+pad;
   document.msgfade.top=Ypos+pad;
   t=setTimeout("changecolor()",100);}
   }
function changecolor(){
   if(totality==true){doPause();}
   else{
   getMsg();
   getContentColor();
   if(document.all){
   msgfade.innerHTML=theMsg;
   t=setTimeout("changecolor()",50);}
   if(document.layers){
   document.msgfade.document.write(theMsg);
   document.msgfade.document.close();
   t=setTimeout("changecolor()",70);}
   }
   }
function getFadeColor(){
   icolor=icolor-1;
   if(mcolor==1){contentcolor=colors1[icolor];}
   else{contentcolor=colors2[icolor];}
   }
function getGlowColor(){
   icolor=icolor+1;
   if(mcolor==1){contentcolor=colors1[icolor];}
   else{contentcolor=colors2[icolor];}
   }
function changemsg(){
   if(imsg==msg.length-1){imsg=0; mcolor=1;}
   else if(imsg != msg.lenght-1 && mcolor==1){imsg=imsg+1; mcolor=0;}
   else{imsg=imsg+1; mcolor=1;}
   }
function getContentColor(){
   if(icolor==colors1.length-1 && glowing==true){
   getFadeColor(); glowing=false; totality=true;}
   else if(icolor < colors1.length && glowing==true){
   getGlowColor();}
   else if(icolor < 1 && glowing==false){changemsg(); getGlowColor(); glowing=true;}
   else{getFadeColor();}
   }
function getMsg() {
   theMsg="<span style='font-size:"+fntSize+"pt; font-family:"+fntFam+"; width:"+spWidth+";'>"
   theMsg+="<B><font color="+contentcolor+">"+msg[imsg]+"</font></B> "
   theMsg+="</span>"
   }
function getCellContent(){
   cellcontent="<TABLE height="+high+
   " width="+wide+" bgcolor="+bgcol+" cellpadding=0 cellspacing=0><TR><TD"+cellbg+"> </TD></TR></TABLE>"}
//  End -->
</script>

</HEAD>

<BODY onLoad="initiate()">

<DIV id=msgbg style="position: absolute;"></DIV>
<DIV id=msgfade style="position: absolute;"></DIV>

<p align="center"><a href="/channel/content.asp?kid=13&nid=30311#test"><img src="/images/w_list3.gif" border="0"></a></p>

</body>
</html>


Ãâó : http://korea.internet.com/channel/content.asp?kid=54&cid=234&nid=30311
   
  0
3500
    N     ºÐ·ù     Á¦¸ñ Á¶È¸
213 °Ô½ÃÆÇ Á¦·Îº¸µå¿ë °Ë»ö¿£Áø Àüü°Ô½ÃÆÇ °Ë»ö±â 1864
212 °Ô½ÃÆÇ ÀϺ»¾î ÀԷ±⠰ԽÃÆÇ 1934
211 ȨÇÇ°ü¸® ¼ºÁö¼ø·Ê Á¤¸® Âü°í »çÀÌÆ® 1466
210 ÆÄ¿öÆ÷ÀÎÆ® °¡³­ÇÑ ÀÚÀÇ Á×À½ 1994
209 ÆÄ¿öÆ÷ÀÎÆ® LIBERA / SANCTUS II 1873
208 ÆÄ¿öÆ÷ÀÎÆ® Taize / Jesus, remember me 1704
207 prezi Windows XP best Tip 60 1539
206 Tip&Tag Æ÷Åä¼¥¿¡¼­ »ö°¨À» °øºÎÇÒ ¼ö ÀÖ´Â »çÀÌÆ® 1695
205 ¿¢¼¿ ½½¶óÀÌµå ¹è°æ ¹Ù²Ù±â 1973
204 ¿¢¼¿ Ư¼ö¹®ÀÚ ÀÔ·ÂÇϱâ 1729
203 Tip&Tag °¡À» ¹è°æ 1597
202 ¿µ»ó½Ã Çϴðø¿ø ¾ï»õÃàÁ¦ 1357
201 Tip&Tag Widnows Media Player »ðÀÔÇϱâ 1787
200 ÆÄ¿öÆ÷ÀÎÆ® Çϴÿ¡¼­¿Í °°ÀÌ ¶¥¿¡¼­µµ 1435
199 ÆÄ¿öÆ÷ÀÎÆ® À̳ëÁÖ»ç ³ë·¡ 1572
198 prezi Çǽÿ¡·¯ ó¹æÀü 57°¡Áö 1629
197 Tip&Tag ¹®¼­Àüü¿¡ Å׵θ® µÎ¸£±â 1281
196 Tip&Tag ÁÖº¯À» Èñ¹ÌÇÏ°Ô... 1398
195 ½ºÅ©¸³Æ® ¸ÖƼ Ä®¶ó ÆäÀ̵ù ÅؽºÆ® È¿°ú~ 1700
194 ¿µ»ó½Ã Ç÷¡½Ã ¹«ºñ¸¦ Åõ¸íÇÏ°Ô ¸¸µå´Â ¹æ¹ý 1827
193 ¾ÖÇø´ Panorama,trans.class 1466
192 ȨÇÇ°ü¸® Ç÷¡½Ã ¼Ò½ººÐ¼® ÇÁ·Î±×·¥swiffer 1601
191 ȨÇÇ°ü¸® FlashSlider V1.2.0.0 1527
190 °Ô½ÃÆÇ ¸ÖƼ°Ô½ÃÆÇ ÅëÇÕÃßÃâ 3Â÷¼öÁ¤. 1576
12345678910,,,14