A

간단한 텍스트 스크롤

· 17년 전 · 1786
사용상 변경의 여지는 충분히 있습니다..
소스가 간단하니.. 크게 설명은 필요없을듯 하네요.

---------------x8 cut here ---------------------------------------
<html>
<head>
<style type="text/css">
a {text-decoration:none;}
div {font-size:9pt;}
div.board_cls {
    border: 1px solid gray;
    /* text-align: center; */
    overflow: hidden; /* 이 부분을 주석처리해서 흐름을 본다 */
}
div.sign_cls {
    border: 0px solid red;
    padding-left:10px;
}
</style>

<script type="text/javascript">
<!--
var timerID = {} ;
var arrIdx = 0;
var msgs = [
            ["http://www.wikipedia.org", "_blank", "wikipedia 가기"],
            ["http://www.netcraft.com/", "_blank", "netcraft 가기"],
            ["http://www.python.org", "_blank", "python 가기"],
            ["http://www.php.net", "_blank", "php 가기"],
            ["http://www.eidf.org", "_blank", "eidf 가기"],
            ["", "", "그냥 텍스트"]
          ];


function makeSign(arr) {
    if (arr.length) {
        if (arr[0] != "") {
            return "<a href='"+ arr[0] +"' target='"+ arr[1] +"'>"+ arr[2] +"</a>";
        }
        else {
            return arr[2];
        }
    }
}

//board 껍데기
function initBoard(boardID, posX, posY) {
    var board = document.getElementById(boardID);
    var bstyle = board.style;

    // sign position
    bstyle.position="absolute";
    bstyle.top = posY; // "150px";
    bstyle.left = posX ; //"150px";

    // sign size
    bstyle.height = "15pt";
    bstyle.width = "200pt";
}

// text (높이값을 적당히 셋팅해야 한다. 아래 줄이 짤리지 않게.)
function initSign(signID, boardID) {
    var board = document.getElementById(boardID);
    var sign = document.getElementById(signID);

    sstyle = sign.style;
    sstyle.position = "relative";
    sstyle.top = parseInt(board.style.height) ;

    sstyle.width = board.style.width;
    sstyle.height = board.style.height;
}


function upwardSign(boardID, signID) {
    var board = document.getElementById(boardID);
    var sign = document.getElementById(signID);

    sign.style.top = parseInt(sign.style.top) - 1; // 이동 범위 -픽셀(이것을 2이상으로 할 경우 머무는 자리의 숫자에 영향

    if (parseInt(sign.style.top) * -1 > parseInt(sign.style.height)) {
        arrIdx = arrIdx + 1;
        initSign(signID, boardID);
        sign.innerHTML = makeSign(msgs[arrIdx%msgs.length]);
    }

    if (parseInt(sign.style.top) == 3) { // 상단에서 숫자만큼의 픽셀 아래에 머물다.
        clearTimeout(timerID[boardID]);
        timerID[boardID] = setTimeout("upwardSign('"+ boardID + "', '"+ signID +"')", 1000); // 1초간 머뭄
        //timerID[boardID] = setTimeout("upwardSign('"+ boardID + "', '"+ signID +"')", 1000 + (Math.random() * 1000)); // 1 - 2초간 머뭄
    }
    else {
        timerID[boardID] = setTimeout("upwardSign('"+ boardID + "', '"+ signID +"')", 50); // 이동 속도 (0.05초)
    }
}


function scroll(boardID, signID, posX, posY) {
    var board = document.getElementById(boardID);
    var sign = document.getElementById(signID);
   
    initBoard(boardID, posX, posY);
    initSign(signID, boardID);
    sign.innerHTML = makeSign(msgs[arrIdx%msgs.length]);
    upwardSign(boardID, signID);
}
//-->
</script>
</head>
<body onload="scroll('board', 'sign', 50, 100); scroll('board2', 'sign2', 50, 125); scroll('board3', 'sign3', 50, 150);">

현재는 메세지를 공유하기 때문에 하나씩 건너서 보여진다.<br />

<div class="board_cls" id="board">
    <div class="sign_cls" id="sign" onMouseOver="clearTimeout(timerID['board'])" onMouseOut="upwardSign('board', 'sign')">11</div>
</div>
<div class="board_cls" id="board2">
    <div class="sign_cls" id="sign2" onMouseOver="clearTimeout(timerID['board2'])" onMouseOut="upwardSign('board2', 'sign2')">22</div>
</div>
<div class="board_cls" id="board3">
    <div class="sign_cls" id="sign3" onMouseOver="clearTimeout(timerID['board3'])" onMouseOut="upwardSign('board3', 'sign3')">33</div>
</div>

</body>
</html>
[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
17년 전 조회 1,992
17년 전 조회 2,596
17년 전 조회 1,900
17년 전 조회 2,096
17년 전 조회 3,052
17년 전 조회 2,497
17년 전 조회 2,145
17년 전 조회 4,556
17년 전 조회 3,372
17년 전 조회 1,784
17년 전 조회 3,907
17년 전 조회 3,161
17년 전 조회 2,400
17년 전 조회 1,659
17년 전 조회 2,678
17년 전 조회 2,404
17년 전 조회 2,338
17년 전 조회 2,279
17년 전 조회 1,514
17년 전 조회 2,209
17년 전 조회 3,261
17년 전 조회 1,762
17년 전 조회 2,021
17년 전 조회 1,690
17년 전 조회 1,925
17년 전 조회 1,909
17년 전 조회 1,813
17년 전 조회 2,900
17년 전 조회 2,664
17년 전 조회 2,454
17년 전 조회 1,750
17년 전 조회 2,777
17년 전 조회 4,587
17년 전 조회 3,071
17년 전 조회 1,998
17년 전 조회 2,191
17년 전 조회 3,595
17년 전 조회 2,584
17년 전 조회 4,149
17년 전 조회 2,003
17년 전 조회 2,595
17년 전 조회 2,436
17년 전 조회 1,956
17년 전 조회 2,463
17년 전 조회 2,270
17년 전 조회 2,303
17년 전 조회 3,421
17년 전 조회 2,483
17년 전 조회 1,770
17년 전 조회 1,787
17년 전 조회 2,453
17년 전 조회 3,535
17년 전 조회 2,454
17년 전 조회 1,875
17년 전 조회 4,582
17년 전 조회 2,360
17년 전 조회 3,792
17년 전 조회 6,364
17년 전 조회 1,826
17년 전 조회 1,988
17년 전 조회 1,560
17년 전 조회 1,679
17년 전 조회 3,206
17년 전 조회 2,241
17년 전 조회 2,903
17년 전 조회 1,624
17년 전 조회 3,509
17년 전 조회 2,491
17년 전 조회 2,928
17년 전 조회 1,742
17년 전 조회 2,087
17년 전 조회 1,471
17년 전 조회 1,521
17년 전 조회 2,104
17년 전 조회 1,531
17년 전 조회 4,622
17년 전 조회 1,834
17년 전 조회 2,323
17년 전 조회 7,422
17년 전 조회 1,694
17년 전 조회 2,233
17년 전 조회 3,468
17년 전 조회 1,535
17년 전 조회 2,297
17년 전 조회 1,456
17년 전 조회 2,151
17년 전 조회 2,477
17년 전 조회 3,289
17년 전 조회 1,570
17년 전 조회 1,638
17년 전 조회 1,872
17년 전 조회 1,551
17년 전 조회 4,689
17년 전 조회 4,215
17년 전 조회 3,130
17년 전 조회 1,914
17년 전 조회 1,651
17년 전 조회 1,914
17년 전 조회 2,849
17년 전 조회 2,052