http://oxtag.com/html/ex/textup.html


<html>
<HEAD>

<STYLE TYPE='text/css'>
 A:link {color:#009999;text-decoration:none;}

 A:visited {color:#009999;text-decoration:none;}

 A:active {color:#0099ff;text-decoration:none;} A:hover {color:#0066cc;text-decoration:none;}
</STYLE>
</HEAD>
<BODY BGCOLOR="#ff00ff">
<script language="JavaScript">
var isMinNS4 = (navigator.appName.indexOf("Netscape") >= 0 &&

                parseFloat(navigator.appVersion) >= 4) ? 1 : 0;
var isMinIE4 = (document.all) ? 1 : 0;

var isMinIE5 = (isMinIE4 && navigator.appVersion.indexOf("5.")) >= 0 ? 1 : 0;
function hideLayer(layer) {
  if (isMinNS4)

    layer.visibility = "hide";

  if (isMinIE4)

    layer.style.visibility = "hidden";

}


function showLayer(layer) {


  if (isMinNS4)

    layer.visibility = "show";

  if (isMinIE4)

    layer.style.visibility = "visible";

}


function isVisible(layer) {


  if (isMinNS4 && layer.visibility == "show")

    return(true);

  if (isMinIE4 && layer.style.visibility == "visible")

    return(true);


  return(false);

}


function moveLayerTo(layer, x, y) {


  if (isMinNS4)

    layer.moveTo(x, y);

  if (isMinIE4) {

    layer.style.left = x;

    layer.style.top  = y;

  }

}


function moveLayerBy(layer, dx, dy) {


  if (isMinNS4)

    layer.moveBy(dx, dy);

  if (isMinIE4) {

    layer.style.pixelLeft += dx;

    layer.style.pixelTop  += dy;

  }

}


function getLeft(layer) {


  if (isMinNS4)

    return(layer.left);

  if (isMinIE4)

    return(layer.style.pixelLeft);

  return(-1);

}


function getTop(layer) {


  if (isMinNS4)

    return(layer.top);

  if (isMinIE4)

    return(layer.style.pixelTop);

  return(-1);

}


function getRight(layer) {


  if (isMinNS4)

    return(layer.left + getWidth(layer));

  if (isMinIE4)

    return(layer.style.pixelLeft + getWidth(layer));

  return(-1);

}


function getBottom(layer) {


  if (isMinNS4)

    return(layer.top + getHeight(layer));

  else if (isMinIE4)

    return(layer.style.pixelTop + getHeight(layer));

  return(-1);

}


function getPageLeft(layer) {


  if (isMinNS4)

    return(layer.pageX);

  if (isMinIE4)

    return(layer.offsetLeft);

  return(-1);

}


function getPageTop(layer) {


  if (isMinNS4)

    return(layer.pageY);

  if (isMinIE4)

    return(layer.offsetTop);

  return(-1);

}


function getWidth(layer) {


  if (isMinNS4) {

    if (layer.document.width)

      return(layer.document.width);

    else

      return(layer.clip.right - layer.clip.left);

  }

  if (isMinIE4) {

    if (layer.style.pixelWidth)

      return(layer.style.pixelWidth);

    else

      return(layer.clientWidth);

  }

  return(-1);

}


function getHeight(layer) {


  if (isMinNS4) {

    if (layer.document.height)

      return(layer.document.height);

    else

      return(layer.clip.bottom - layer.clip.top);

  }

  if (isMinIE4) {

    if (false && layer.style.pixelHeight)

      return(layer.style.pixelHeight);

    else

      return(layer.clientHeight);

  }

  return(-1);

}


function getzIndex(layer) {


  if (isMinNS4)

    return(layer.zIndex);

  if (isMinIE4)

    return(layer.style.zIndex);


  return(-1);

}


function setzIndex(layer, z) {


  if (isMinNS4)

    layer.zIndex = z;

  if (isMinIE4)

    layer.style.zIndex = z;

}


function clipLayer(layer, clipleft, cliptop, clipright, clipbottom) {


  if (isMinNS4) {

    layer.clip.left   = clipleft;

    layer.clip.top    = cliptop;

    layer.clip.right  = clipright;

    layer.clip.bottom = clipbottom;

  }

  if (isMinIE4)

    layer.style.clip = 'rect(' + cliptop + ' ' +  clipright + ' ' + clipbottom + ' ' + clipleft +')';

}


function getClipLeft(layer) {


  if (isMinNS4)

    return(layer.clip.left);

  if (isMinIE4) {

    var str =  layer.style.clip;

    if (!str)

      return(0);

    var clip = getIEClipValues(layer.style.clip);

    return(clip[3]);

  }

  return(-1);

}


function getClipTop(layer) {


  if (isMinNS4)

    return(layer.clip.top);

  if (isMinIE4) {

    var str =  layer.style.clip;

    if (!str)

      return(0);

    var clip = getIEClipValues(layer.style.clip);

    return(clip[0]);

  }

  return(-1);

}


function getClipRight(layer) {


  if (isMinNS4)

    return(layer.clip.right);

  if (isMinIE4) {

    var str =  layer.style.clip;

    if (!str)

      return(layer.style.pixelWidth);

    var clip = getIEClipValues(layer.style.clip);

    return(clip[1]);

  }

  return(-1);

}


function getClipBottom(layer) {


  if (isMinNS4)

    return(layer.clip.bottom);

  if (isMinIE4) {

    var str =  layer.style.clip;

    if (!str)

      return(layer.style.pixelHeight);

    var clip = getIEClipValues(layer.style.clip);

    return(clip[2]);

  }

  return(-1);

}


function getClipWidth(layer) {


  if (isMinNS4)

    return(layer.clip.width);

  if (isMinIE4) {

    var str = layer.style.clip;

    if (!str)

      return(layer.style.pixelWidth);

    var clip = getIEClipValues(layer.style.clip);

    return(clip[1] - clip[3]);

  }

  return(-1);

}


function getClipHeight(layer) {


  if (isMinNS4)

    return(layer.clip.height);

  if (isMinIE4) {

    var str =  layer.style.clip;

    if (!str)

      return(layer.style.pixelHeight);

    var clip = getIEClipValues(layer.style.clip);

    return(clip[2] - clip[0]);

  }

  return(-1);

}


function getIEClipValues(str) {


  var clip = new Array();

  var i;


  i = str.indexOf("(");

  clip[0] = parseInt(str.substring(i + 1, str.length), 10);

  i = str.indexOf(" ", i + 1);

  clip[1] = parseInt(str.substring(i + 1, str.length), 10);

  i = str.indexOf(" ", i + 1);

  clip[2] = parseInt(str.substring(i + 1, str.length), 10);

  i = str.indexOf(" ", i + 1);

  clip[3] = parseInt(str.substring(i + 1, str.length), 10);

  return(clip);

}


function scrollLayerTo(layer, x, y, bound) {


  var dx = getClipLeft(layer) - x;

  var dy = getClipTop(layer) - y;


  scrollLayerBy(layer, -dx, -dy, bound);

}


function scrollLayerBy(layer, dx, dy, bound) {


  var cl = getClipLeft(layer);

  var ct = getClipTop(layer);

  var cr = getClipRight(layer);

  var cb = getClipBottom(layer);


  if (bound) {

    if (cl + dx < 0)


      dx = -cl;


    else if (cr + dx > getWidth(layer))

      dx = getWidth(layer) - cr;

    if (ct + dy < 0)


      dy = -ct;


    else if (cb + dy > getHeight(layer))

      dy = getHeight(layer) - cb;

  }


  clipLayer(layer, cl + dx, ct + dy, cr + dx, cb + dy);

  moveLayerBy(layer, -dx, -dy);

}


function setBgColor(layer, color) {


  if (isMinNS4)

    layer.bgColor = color;

  if (isMinIE4)

    layer.style.backgroundColor = color;

}


function setBgImage(layer, src) {


  if (isMinNS4)

    layer.background.src = src;

  if (isMinIE4)

    layer.style.backgroundImage = "url(" + src + ")";

}


function getLayer(name) {


  if (isMinNS4)

    return findLayer(name, document);

  if (isMinIE4)

    return eval('document.all.' + name);


  return null;

}


function findLayer(name, doc) {


  var i, layer;


  for (i = 0; i < doc.layers.length; i++) {

    layer = doc.layers[i];

    if (layer.name == name)

      return layer;

    if (layer.document.layers.length > 0) {

      layer = findLayer(name, layer.document);

      if (layer != null)

        return layer;

    }

  }


  return null;

}


function getWindowWidth() {


  if (isMinNS4)

    return(window.innerWidth);

  if (isMinIE4)

    return(document.body.clientWidth);

  return(-1);

}


function getWindowHeight() {


  if (isMinNS4)

    return(window.innerHeight);

  if (isMinIE4)

    return(document.body.clientHeight);

  return(-1);

}


function getPageWidth() {


  if (isMinNS4)

    return(document.width);

  if (isMinIE4)

    return(document.body.scrollWidth);

  return(-1);

}


function getPageHeight() {


  if (isMinNS4)

    return(document.height);

  if (isMinIE4)

    return(document.body.scrollHeight);

  return(-1);

}


function getPageScrollX() {


  if (isMinNS4)

    return(window.pageXOffset);

  if (isMinIE4)

    return(document.body.scrollLeft);

  return(-1);

}


function getPageScrollY() {


  if (isMinNS4)

    return(window.pageYOffset);

  if (isMinIE4)

    return(document.body.scrollTop);

  return(-1);

}


</script>


<script language="JavaScript">


function Scroller(x, y, width, height, border, padding) {


  this.x = x;

  this.y = y;

  this.width = width;

  this.height = height;

  this.border = border;

  this.padding = padding;


  this.items = new Array();

  this.created = false;


  this.fgColor = "#0099FF";

  this.bgColor = "#FFFFEE";

  this.bdColor = "#0066CC";


  this.fontFace = "Arial,Helvetica";

  this.fontSize = "2";


  this.speed = 100; //글자의 스크롤 속도 (숫자를 높일수록 빨라집니다)

  this.pauseTime = 2000; //글자가 머물러 있는 시간 (예:1000 는 1초)


  this.setColors = scrollerSetColors;

  this.setFont = scrollerSetFont;

  this.setSpeed = scrollerSetSpeed;

  this.setPause = scrollersetPause;

  this.addItem = scrollerAddItem;

  this.create = scrollerCreate;

  this.show = scrollerShow;

  this.hide = scrollerHide;

  this.moveTo = scrollerMoveTo;

  this.moveBy = scrollerMoveBy;

  this.getzIndex = scrollerGetzIndex;

  this.setzIndex = scrollerSetzIndex;

  this.stop = scrollerStop;

  this.start = scrollerStart;

}


function scrollerSetColors(fgcolor, bgcolor, bdcolor) {


  if (this.created) {

    alert("Scroller Error: Scroller has already been created.");

    return;

  }

  this.fgColor = fgcolor;

  this.bgColor = bgcolor;

  this.bdColor = bdcolor;

}


function scrollerSetFont(face, size) {


  if (this.created) {

    alert("Scroller Error: Scroller has already been created.");

    return;

  }

  this.fontFace = face;

  this.fontSize = size;

}


function scrollerSetSpeed(pps) {


  if (this.created) {

    alert("Scroller Error: Scroller has already been created.");

    return;

  }

  this.speed = pps;

}


function scrollersetPause(ms) {


  if (this.created) {

    alert("Scroller Error: Scroller has already been created.");

    return;

  }

  this.pauseTime = ms;

}


function scrollerAddItem(str) {


  if (this.created) {

    alert("Scroller Error: Scroller has already been created.");

    return;

  }

  this.items[this.items.length] = str;

}


function scrollerCreate() {


  var start, end;

  var str;

  var i, j;

  var x, y;


  if (!isMinNS4 && !isMinIE4)

    return;


  if (scrollerList.length == 0)

    setInterval('scrollerGo()', scrollerInterval);


  if (this.created) {

    alert("Scroller Error: Scroller has already been created.");

    return;

  }

  this.created = true;


  this.items[this.items.length] = this.items[0];


  start = '<table border=0'

        + ' cellpadding=' + (this.padding + this.border)

        + ' cellspacing=0'

        + ' width=' + this.width

        + ' height=' + this.height + '>'

        + '<tr><td>'

        + '<font'

        + ' color="' + this.fgColor + '"'

        + ' face="' + this.fontFace + '"'

        + ' size=' + this.fontSize + '>';

  end   = '</font></td></tr></table>';


  if (isMinNS4) {

    this.baseLayer = new Layer(this.width);

    this.scrollLayer = new Layer(this.width, this.baseLayer);

    this.scrollLayer.visibility = "inherit";

    this.itemLayers = new Array();

    for (i = 0; i < this.items.length; i++) {

      this.itemLayers[i] = new Layer(this.width, this.scrollLayer);

      this.itemLayers[i].document.open();

      this.itemLayers[i].document.writeln(start + this.items[i] + end);

      this.itemLayers[i].document.close();

      this.itemLayers[i].visibility = "inherit";

    }


    setBgColor(this.baseLayer, this.bdColor);

    setBgColor(this.scrollLayer, this.bgColor);

  }


  if (isMinIE4) {

    i = scrollerList.length;

    str = '<div id="scroller' + i + '_baseLayer"'

        + ' style="position:absolute;'

        + ' background-color:' + this.bdColor + ';'

        + ' width:' + this.width + 'px;'

        + ' height:' + this.height + 'px;'

        + ' overflow:hidden;'

        + ' visibility:hidden;">\n'

        + '<div id="scroller' + i + '_scrollLayer"'

        + ' style="position:absolute;'

        + ' background-color: ' + this.bgColor + ';'

        + ' width:' + this.width + 'px;'

        + ' height:' + (this.height * this.items.length) + 'px;'

        + ' visibility:inherit;">\n';

    for (j = 0; j < this.items.length; j++) {

      str += '<div id="scroller' + i + '_itemLayers' + j + '"'

          +  ' style="position:absolute;'

          +  ' width:' + this.width + 'px;'

          +  ' height:' + this.height + 'px;'

          +  ' visibility:inherit;">\n'

          +  start + this.items[j] + end

          +  '</div>\n';

    }

    str += '</div>\n'

        +  '</div>\n';


    if (!isMinIE5) {

      x = getPageScrollX();

      y = getPageScrollY();

      window.scrollTo(getPageWidth(), getPageHeight());

    }

    document.body.insertAdjacentHTML("beforeEnd", str);

    if (!isMinIE5)

      window.scrollTo(x, y);


    this.baseLayer = getLayer("scroller" + i + "_baseLayer");

    this.scrollLayer = getLayer("scroller" + i + "_scrollLayer");

    this.itemLayers = new Array();

    for (j = 0; j < this.items.length; j++)

      this.itemLayers[j] = getLayer("scroller" + i + "_itemLayers" + j);

  }


  moveLayerTo(this.baseLayer, this.x, this.y);

  clipLayer(this.baseLayer, 0, 0, this.width, this.height);

  moveLayerTo(this.scrollLayer, this.border, this.border);

  clipLayer(this.scrollLayer, 0, 0,

            this.width - 2 * this.border, this.height - 2 * this.border);


  x = 0;

  y = 0;

  for (i = 0; i < this.items.length; i++) {

    moveLayerTo(this.itemLayers[i], x, y);

    clipLayer(this.itemLayers[i], 0, 0, this.width, this.height);

    y += this.height;

  }


  this.stopped = false;

  this.currentY = 0;

  this.stepY = this.speed / (1000 / scrollerInterval);

  this.stepY = Math.min(this.height, this.stepY);

  this.nextY = this.height;

  this.maxY = this.height * (this.items.length - 1);

  this.paused = true;

  this.counter = 0;


  scrollerList[scrollerList.length] = this;


  showLayer(this.baseLayer);

}


function scrollerShow() {


  if (this.created)

    showLayer(this.baseLayer);

}


function scrollerHide() {


  if (this.created)

    hideLayer(this.baseLayer);

}


function scrollerMoveTo(x, y) {


  if (this.created)

    moveLayerTo(this.baseLayer, x, y);

}


function scrollerMoveBy(dx, dy) {


  if (this.created)

    moveLayerBy(this.baseLayer, dx, dy);

}


function scrollerGetzIndex() {


  if (this.created)

    return(getzIndex(this.baseLayer));

  else

    return(0);

}


function scrollerSetzIndex(z) {


  if (this.created)

    setzIndex(this.baseLayer, z);

}


function scrollerStart() {


  this.stopped = false;

}


function scrollerStop() {


  this.stopped = true;

}


var scrollerList     = new Array();

var scrollerInterval = 20;


function scrollerGo() {


  var i;


  for (i = 0; i < scrollerList.length; i++) {


    if (scrollerList[i].stopped);


    else if (scrollerList[i].paused) {

      scrollerList[i].counter += scrollerInterval;

      if (scrollerList[i].counter > scrollerList[i].pauseTime)

        scrollerList[i].paused = false;

    }


    else {

      scrollerList[i].currentY += scrollerList[i].stepY;


      if (scrollerList[i].currentY >= scrollerList[i].nextY) {

        scrollerList[i].paused = true;

        scrollerList[i].counter = 0;

        scrollerList[i].currentY = scrollerList[i].nextY;

        scrollerList[i].nextY += scrollerList[i].height;

      }


      if (scrollerList[i].currentY >= scrollerList[i].maxY) {

        scrollerList[i].currentY -= scrollerList[i].maxY;

        scrollerList[i].nextY = scrollerList[i].height;

      }

      scrollLayerTo(scrollerList[i].scrollLayer,

                    0, Math.round(scrollerList[i].currentY),

                    false);

    }

  }

}


var origWidth;

var origHeight;


if (isMinNS4) {

  origWidth  = window.innerWidth;

  origHeight = window.innerHeight;

}

window.onresize = scrollerReload;


function scrollerReload() {


  if (isMinNS4 && origWidth == window.innerWidth && origHeight == window.innerHeight)

    return;

  window.location.href = window.location.href;

}


</script>


<script language="JavaScript">

//0,0,은 놔두시고 300 은 가로크기, 30 은 세로 크기, 1 은 테두리 두께, 5 는 cellspacing 입니다

//0099ff 는 글자색, ffffee 는 바탕색, 0066cc 는 테두리색 입니다

 var myScroller1 = new Scroller(0, 0, 440, 40, 1, 5);

    myScroller1.setColors("yellow", "#999999", "#999999"); //0099ff 는 글자색, ffffee 는 바탕색,  는 테두리색 입니다

    myScroller1.setFont("돋움,굴림", 2);

    myScroller1.addItem("<b><font color=yellow><center>방문해주셔서 감사해요</b>");

    myScroller1.addItem("<b><font color=lime><center>많이들복사해가세요</b>");

    myScroller1.addItem("<b><font color=white><center>그리고많이들애용해주세요</b>");

    myScroller1.addItem("<b><font color=pink><center>그리고하시는 일마다잘되시길</b></a>");
myScroller1.addItem("<b><font color=yellow><center>그럼시나한수 적겠습니다.</b></a>");
myScroller1.addItem("<b><font color=lime><center>윤동주</b></a>");
myScroller1.addItem("<b><font color=blue><center>서시</b></a>");myScroller1.addItem("<b><font color=white><center>죽는날까지 하늘을 우러러</b></a>");
myScroller1.addItem("<b><font color=pink><center>한 점 부끄럼이 없기를</b></a>");
 myScroller1.addItem("<b><font color=lime><center>잎세에 이는 바람에도</b></a>");
myScroller1.addItem("<b><font color=yellow><center>나는 괴로워했다.</b></a>");
myScroller1.addItem("<b><font color=orange><center>별을 노래하는 마음으로</b></a>");
myScroller1.addItem("<b><font color=cyan><center>모든죽어가는 것을 사랑해야지</b></a>");
function runmikescroll() {
myScroller1.addItem("<b><font color=green><center>그리고 나한테 주어진 길을</b></a>");
myScroller1.addItem("<b><font color=magente><center>걸어가야겠다.</b></a>");
myScroller1.addItem("<b><font color=white><center>오늘밤에도 별이바람에 스치운다.</b></a>");
 myScroller1.addItem("<b><font color=lime><center>김광섭</b></a>");
myScroller1.addItem("<b><font color=red><center>어디서 무엇이되어 다시 만나랴</b></a>");
myScroller1.addItem("<b><font color=white><center>저렇게 많은 중에서</b></a>");
myScroller1.addItem("<b><font color=blue><center>별하나가 나를 내려다본다.</b></a>");
myScroller1.addItem("<b><font color=pink><center>이렇게 많은 사람 중에서</b></a>");
myScroller1.addItem("<b><font color=orange><center>그 별 하나를 쳐다본다.</b></a>");
myScroller1.addItem("<b><font color=green><center>밤이깊을수록</b></a>");
myScroller1.addItem("<b><font color=yellow><center>별은 밝음 속에 사라지고</b></a>");
myScroller1.addItem("<b><font color=cyan><center>나는 어둠속에 사라진다.</b></a>");
myScroller1.addItem("<b><font color=lime><center>이렇게 정다운</b></a>");
myScroller1.addItem("<b><font color=white><center>너 하나 나 하나는</b></a>");
    myScroller1.addItem("<b><font color=pink><center>어디서 무엇이 되어</b></a>");
myScroller1.addItem("<b><font color=green><center>다시만나랴</b></a>");
var layer;

  var mikex, mikey;


  layer = getLayer("placeholder");

  mikex = getPageLeft(layer);

  mikey = getPageTop(layer);


  myScroller1.create();

  myScroller1.hide();

  myScroller1.moveTo(mikex, mikey);

  myScroller1.setzIndex(100);

  myScroller1.show();

}


window.onload=runmikescroll


</script>


<CENTER>


<DIV id="placeholder" style="position:relative; width:420px; height:32px;">&#160;</DIV>


</CENTER>


</BODY>


</HTML>

Posted by 알 수 없는 사용자
,