뇌입어에서 뽀려온 스크롤

· 2005-07-01 (금) 11:49:16 · 4401 · 3
'); } else if ( this.type == 2 ) { document.write('
'); document.write(this.item[i]); document.write('
'); } } document.write(''); }; this.scroll = function () { this.currentspeed = this.scrollspeed;if ( !this.stop ) { for (i = 0; i < this.itemcount; i++) { obj = document.getElementById(this.name+'item'+i).style;if ( this.type == 1 ) { obj.top = parseInt(obj.top) - 1; if ( parseInt(obj.top) <= this.height*(-1) ) obj.top = this.height * (this.itemcount-1); if ( parseInt(obj.top) == 0 || ( this.stopHeight > 0 && this.stopHeight - parseInt(obj.top) == 0 ) ) this.currentspeed = this.pausedelay; } else if ( this.type == 2 ) { obj.left = parseInt(obj.left) - 1; if ( parseInt(obj.left) <= this.left*(-1) ) obj.left = this.left* (this.itemcount-1); if ( parseInt(obj.left) == 0 ) this.currentspeed = this.pausedelay; } } } window.setTimeout(this.name+".scroll()",this.currentspeed); }; this.onmouseover = function () { if ( this.pausemouseover ) { this.stop = true;} }; this.onmouseout = function () { if ( this.pausemouseover ) { this.stop = false; } }; }

뇌입어의 뉴스에서 뽀려온 스크롤 소스

이것으로 최신글 스킨을 만들면 재미 있을 듯 하네요.

아무도 만들지 않으면 내가 만들어 만점 먹습니다. ^^

미리보기

"); cont.add("
내용3
"); cont.add("
내용2
"); cont.add("
내용1
"); cont.start();

코드

<script> function scroll() { this.name = "scroll"; this.item = new Array(); this.itemcount = 0; this.currentspeed = 0; this.scrollspeed = 50; this.pausedelay = 1000; this.pausemouseover = false; this.stop = false; this.type = 1; this.height = 100; this.width = 100; this.stopHeight=0; this.add =function () { var text = arguments[0]; this.item[this.itemcount] = text; this.itemcount = this.itemcount + 1; }; this.start = function () { this.display(); this.currentspeed = this.scrollspeed; setTimeout(this.name+'.scroll()',this.currentspeed); }; this.display =function () { document.write('<div id="'+this.name+'" style="height:'+this.height+';width:'+this.width+';position:relative;overflow:hidden;" OnMouseOver="'+this.name+'.onmouseover();" OnMouseOut="'+this.name+'.onmouseout();">'); for(var i = 0; i < this.itemcount; i++) {if ( this.type == 1) { document.write('<div id="'+this.name+'item'+i+'"style="left:0px;width:'+this.width+';position:absolute;top:'+(this.height*i+1)+'px;">'); document.write(this.item[i]); document.write('</div>'); } else if ( this.type == 2 ) { document.write('<div id="'+this.name+'item'+i+'"style="left:'+(this.width*i+1)+'px;width:'+this.width+';position:absolute;top:0px;">'); document.write(this.item[i]); document.write('</div>'); } } document.write('</div>'); }; this.scroll = function () { this.currentspeed = this.scrollspeed;if ( !this.stop ) { for (i = 0; i < this.itemcount; i++) { obj = document.getElementById(this.name+'item'+i).style;if ( this.type == 1 ) { obj.top = parseInt(obj.top) - 1; if ( parseInt(obj.top) <= this.height*(-1) ) obj.top = this.height * (this.itemcount-1); if ( parseInt(obj.top) == 0 || ( this.stopHeight > 0 && this.stopHeight - parseInt(obj.top) == 0 ) ) this.currentspeed = this.pausedelay; } else if ( this.type == 2 ) { obj.left = parseInt(obj.left) - 1; if ( parseInt(obj.left) <= this.left*(-1) ) obj.left = this.left* (this.itemcount-1); if ( parseInt(obj.left) == 0 ) this.currentspeed = this.pausedelay; } } } window.setTimeout(this.name+".scroll()",this.currentspeed); }; this.onmouseover = function () { if ( this.pausemouseover ) { this.stop = true;} }; this.onmouseout = function () { if ( this.pausemouseover ) { this.stop = false; } }; } </script> <table width="243" border=0 cellpadding=0 cellspacing=0 bgcolor=#EBE8E2> <tr> <td width="243"> <script> cont = new scroll(); cont.name = "cont"; cont.height = 115; cont.width = 226; cont.scrollspeed = 20; cont.pausedelay = 3000; cont.pausemouseover = true; cont.add("<table width=100%><tr><td height=20 colspan=2>내용4</td></tr></table>"); cont.add("<table width=100%><tr><td height=20 colspan=2>내용3</td></tr></table>"); cont.add("<table width=100%><tr><td height=20 colspan=2>내용2</td></tr></table>"); cont.add("<table width=100%><tr><td height=20 colspan=2>내용1</td></tr></table>"); cont.start(); </script> </td> </tr> </table>

 

[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|

댓글 3개

헉스... 내가 몇일만 젊었어도 내가 만들고 만점 먹었을텐데..ㅋ
파폭에서 이상없이 표시 됩니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
05-08-01 조회 3,939
05-07-24 조회 5,326
05-07-16 조회 5,426
bbbking
05-07-08 조회 3,243
bbbking
05-07-08 조회 3,063
bbbking
05-07-08 조회 8,691
05-07-01 조회 3,255
05-06-30 조회 4,625
05-06-24 조회 5,098
05-06-24 조회 3,338
05-06-21 조회 6,722
05-06-17 조회 4,541
05-06-15 조회 5,365
05-05-04 조회 3,593
05-04-11 조회 4,705
05-04-04 조회 5,119
05-04-02 조회 3,515
05-03-30 조회 3,215
05-03-15 조회 3,353
05-03-15 조회 3,037
05-03-14 조회 2,533
05-03-13 조회 2,742
05-03-13 조회 2,887
05-03-13 조회 2,722
05-03-13 조회 2,970
05-03-13 조회 4,561
05-03-13 조회 3,103
05-03-13 조회 2,532
05-03-13 조회 2,556
05-03-13 조회 2,417
05-03-13 조회 3,596
05-03-13 조회 2,632
05-03-13 조회 2,648
05-03-13 조회 3,128
05-03-13 조회 3,409
05-03-13 조회 3,002
05-03-13 조회 2,943
05-03-13 조회 3,633
05-03-13 조회 2,578
05-03-13 조회 4,075
05-03-13 조회 2,797
05-03-13 조회 3,161
05-03-13 조회 2,638
05-03-13 조회 3,823
05-03-13 조회 2,500
05-03-12 조회 4,826
05-02-04 조회 3,409
04-12-13 조회 7,015
04-12-01 조회 3,322
04-11-30 조회 3,395
04-11-30 조회 2,709
04-11-30 조회 2,604
04-11-30 조회 4,020
04-11-29 조회 3,751
04-11-28 조회 3,676
04-11-28 조회 3,968
04-11-28 조회 3,440
04-11-28 조회 2,958
04-11-28 조회 3,513
04-11-24 조회 3,171
04-11-23 조회 2,970
04-11-17 조회 2,957
04-11-12 조회 3,250
04-11-12 조회 2,603
04-11-10 조회 3,839
04-08-23 조회 4,275
04-08-09 조회 4,991
04-08-08 조회 4,693
04-08-05 조회 6,520
03-09-26 조회 5,175