A

간단한 텍스트 스크롤

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

---------------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,872
17년 전 조회 2,465
17년 전 조회 1,775
17년 전 조회 1,949
17년 전 조회 2,919
17년 전 조회 2,358
17년 전 조회 2,006
17년 전 조회 4,405
17년 전 조회 3,253
17년 전 조회 1,644
17년 전 조회 3,770
17년 전 조회 3,014
17년 전 조회 2,283
17년 전 조회 1,517
17년 전 조회 2,543
17년 전 조회 2,275
17년 전 조회 2,195
17년 전 조회 2,139
17년 전 조회 1,387
17년 전 조회 2,097
17년 전 조회 3,120
17년 전 조회 1,643
17년 전 조회 1,885
17년 전 조회 1,554
17년 전 조회 1,808
17년 전 조회 1,776
17년 전 조회 1,684
17년 전 조회 2,765
17년 전 조회 2,546
17년 전 조회 2,330
17년 전 조회 1,618
17년 전 조회 2,634
17년 전 조회 4,463
17년 전 조회 2,958
17년 전 조회 1,869
17년 전 조회 2,049
17년 전 조회 3,460
17년 전 조회 2,440
17년 전 조회 4,025
17년 전 조회 1,880
17년 전 조회 2,485
17년 전 조회 2,324
17년 전 조회 1,823
17년 전 조회 2,343
17년 전 조회 2,141
17년 전 조회 2,172
17년 전 조회 3,298
17년 전 조회 2,363
17년 전 조회 1,650
17년 전 조회 1,670
17년 전 조회 2,330
17년 전 조회 3,411
17년 전 조회 2,347
17년 전 조회 1,748
17년 전 조회 4,441
17년 전 조회 2,239
17년 전 조회 3,676
17년 전 조회 6,241
17년 전 조회 1,695
17년 전 조회 1,843
17년 전 조회 1,436
17년 전 조회 1,534
17년 전 조회 3,086
17년 전 조회 2,105
17년 전 조회 2,801
17년 전 조회 1,493
17년 전 조회 3,383
17년 전 조회 2,380
17년 전 조회 2,808
17년 전 조회 1,611
17년 전 조회 1,961
17년 전 조회 1,342
17년 전 조회 1,404
17년 전 조회 1,982
17년 전 조회 1,407
17년 전 조회 4,510
17년 전 조회 1,723
17년 전 조회 2,200
17년 전 조회 7,315
17년 전 조회 1,572
17년 전 조회 2,103
17년 전 조회 3,353
17년 전 조회 1,401
17년 전 조회 2,180
17년 전 조회 1,343
17년 전 조회 2,039
17년 전 조회 2,366
17년 전 조회 3,180
17년 전 조회 1,444
17년 전 조회 1,512
17년 전 조회 1,763
17년 전 조회 1,432
17년 전 조회 4,560
17년 전 조회 4,105
17년 전 조회 2,999
17년 전 조회 1,779
17년 전 조회 1,517
17년 전 조회 1,811
17년 전 조회 2,746
17년 전 조회 1,932