A

롤링배너객체 Rolling

· 17년 전 · 2569
------------------------------------- Config -------------------------------------
var myRolling = new Rolling(appendElement,width,height,방향[0-좌,1-우,2-상,3-하],스크롤픽셀,호출주기,딜레이);
myRolling.box.innerHTML = "";
myRolling.box.innerHTML += "<div style='width:80px; height:20px; background:#FEA700;'>1</div>";
myRolling.box.innerHTML += "<div style='width:80px; height:20px; background:#FEDD00;'>2</div>";
myRolling.box.innerHTML += "<div style='width:80px; height:20px; background:#FEF500;'>3</div>";
myRolling.box.innerHTML += "<div style='width:80px; height:20px; background:#D7FE00;'>4</div>";
myRolling.Init();    //객체초기화
myRolling.Run();    //객체실행
------------------------------------- Config -------------------------------------


<html>
<head>
<title></title>
<script type="text/javascript" src="Rolling.js"></script>
</head>
<body>

<div id="test1" style="border: 1px solid #000000; width: 800px; height: 150px;"></div>
<br><br>
<div id="test2" style="border: 1px solid #000000; width: 800px; height: 150px;"></div>
<br><br>
<div id="test3" style="border: 1px solid #000000; width: 800px; height: 150px;"><br><br><br></div>
<br><br>
<div id="test4" style="border: 1px solid #000000; width: 800px; height: 150px;"></div>

<script type="text/javascript">
var myRolling1 = new Rolling(document.getElementById("test1"),700,26,2,2,30,3000);
myRolling1.box.innerHTML = "";
myRolling1.box.innerHTML += "<div><nobr><img src='http://www.phpschool.com/menu_images/top_menu1_off.gif'><img src='http://www.phpschool.com/menu_images/top_menu2_off.gif'><img src='http://www.phpschool.com/menu_images/top_menu3_off.gif'><img src='http://www.phpschool.com/menu_images/top_menu4_off.gif'><img src='http://www.phpschool.com/menu_images/top_menu5_off.gif'><img src='http://www.phpschool.com/menu_images/top_menu6_off.gif'><img src='http://www.phpschool.com/menu_images/top_menu7_off.gif'><img src='http://www.phpschool.com/menu_images/top_menu8_off.gif'></nobr></div>";
myRolling1.box.innerHTML += "<div><nobr><img src='http://www.phpschool.com/menu_images/top_menu1_on.gif'><img src='http://www.phpschool.com/menu_images/top_menu2_on.gif'><img src='http://www.phpschool.com/menu_images/top_menu3_on.gif'><img src='http://www.phpschool.com/menu_images/top_menu4_on.gif'><img src='http://www.phpschool.com/menu_images/top_menu5_on.gif'><img src='http://www.phpschool.com/menu_images/top_menu6_on.gif'><img src='http://www.phpschool.com/menu_images/top_menu7_on.gif'><img src='http://www.phpschool.com/menu_images/top_menu8_on.gif'></nobr></div>";
myRolling1.Init();
myRolling1.Run();

var myRolling2 = new Rolling(document.getElementById("test2"),240,50,0,2,10,1000);
myRolling2.box.style.border = "1px solid orange";
myRolling2.box.innerHTML = "";
myRolling2.box.innerHTML += "<div style='width:80px; height:20px; background:#FEA700;'>1</div>";
myRolling2.box.innerHTML += "<div style='width:80px; height:20px; background:#FEDD00;'>2</div>";
myRolling2.box.innerHTML += "<div style='width:80px; height:20px; background:#FEF500;'>3</div>";
myRolling2.box.innerHTML += "<div style='width:80px; height:20px; background:#D7FE00;'>4</div>";
myRolling2.Init();
myRolling2.Run();

var myRolling3 = new Rolling(document.getElementById("test3"),700,30,1,2,1,100);
myRolling3.box.style.border = "1px solid green";
myRolling3.box.innerHTML = "";
myRolling3.box.innerHTML += "<div style='width:80px; height:20px; background:#FEA700;'>1</div>";
myRolling3.box.innerHTML += "<div style='width:80px; height:20px; background:#FEDD00;'>2</div>";
myRolling3.box.innerHTML += "<div style='width:80px; height:20px; background:#FEF500;'>3</div>";
myRolling3.box.innerHTML += "<div style='width:80px; height:20px; background:#D7FE00;'>4</div>";
myRolling3.box.innerHTML += "<div style='width:80px; height:20px; background:#B9FE00;'>5</div>";
myRolling3.box.innerHTML += "<div style='width:80px; height:20px; background:#83FE00;'>6</div>";
myRolling3.box.innerHTML += "<div style='width:80px; height:20px; background:#30FE00;'>7</div>";
myRolling3.box.innerHTML += "<div style='width:80px; height:20px; background:#38EF0D;'>8</div>";
myRolling3.Init();
myRolling3.Run();

var myRolling4 = new Rolling(document.getElementById("test4"),400,140,3,2,40,1000);
myRolling4.box.style.border = "1px solid red";
myRolling4.box.innerHTML = "";
myRolling4.box.innerHTML += "<div style='width:300px; height:20px; background:#FEA700;'>1</div>";
myRolling4.box.innerHTML += "<div style='width:300px; height:20px; background:#FEDD00;'>2</div>";
myRolling4.box.innerHTML += "<div style='width:300px; height:20px; background:#FEF500;'>3</div>";
myRolling4.box.innerHTML += "<div style='width:300px; height:20px; background:#D7FE00;'>4</div>";
myRolling4.box.innerHTML += "<div style='width:300px; height:20px; background:#B9FE00;'>5</div>";
myRolling4.box.innerHTML += "<div style='width:300px; height:20px; background:#83FE00;'>6</div>";
myRolling4.box.innerHTML += "<div style='width:300px; height:20px; background:#30FE00;'>7</div>";
myRolling4.box.innerHTML += "<div style='width:300px; height:20px; background:#38EF0D;'>8</div>";
myRolling4.Init();
myRolling4.Run();
</script>

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

첨부파일

Rolling.js (5.6 KB) 150회 2008-09-18 17:55
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
17년 전 조회 1,765
17년 전 조회 1,357
17년 전 조회 1,508
17년 전 조회 3,402
17년 전 조회 2,431
17년 전 조회 2,223
17년 전 조회 1,487
17년 전 조회 2,711
17년 전 조회 1,439
17년 전 조회 1,408
17년 전 조회 1,657
17년 전 조회 3,017
17년 전 조회 2,676
17년 전 조회 2,728
17년 전 조회 1,456
17년 전 조회 1,567
17년 전 조회 3,531
17년 전 조회 3,103
17년 전 조회 4,360
17년 전 조회 2,538
17년 전 조회 2,633
17년 전 조회 1,682
17년 전 조회 2,793
17년 전 조회 2,470
17년 전 조회 3,244
17년 전 조회 2,748
17년 전 조회 1,890
17년 전 조회 2,680
17년 전 조회 1,828
17년 전 조회 1,421
17년 전 조회 2,493
17년 전 조회 3,128
17년 전 조회 4,336
17년 전 조회 3,400
17년 전 조회 1,663
17년 전 조회 1,892
17년 전 조회 2,488
17년 전 조회 1,804
17년 전 조회 1,978
17년 전 조회 2,943
17년 전 조회 2,398
17년 전 조회 2,034
17년 전 조회 4,443
17년 전 조회 3,285
17년 전 조회 1,675
17년 전 조회 3,808
17년 전 조회 3,041
17년 전 조회 2,302
17년 전 조회 1,541
17년 전 조회 2,570
17년 전 조회 2,307
17년 전 조회 2,223
17년 전 조회 2,162
17년 전 조회 1,411
17년 전 조회 2,114
17년 전 조회 3,146
17년 전 조회 1,667
17년 전 조회 1,917
17년 전 조회 1,583
17년 전 조회 1,825
17년 전 조회 1,800
17년 전 조회 1,707
17년 전 조회 2,787
17년 전 조회 2,565
17년 전 조회 2,361
17년 전 조회 1,644
17년 전 조회 2,661
17년 전 조회 4,489
17년 전 조회 2,988
17년 전 조회 1,887
17년 전 조회 2,085
17년 전 조회 3,487
17년 전 조회 2,467
17년 전 조회 4,049
17년 전 조회 1,909
17년 전 조회 2,509
17년 전 조회 2,352
17년 전 조회 1,856
17년 전 조회 2,371
17년 전 조회 2,179
17년 전 조회 2,205
17년 전 조회 3,328
17년 전 조회 2,389
17년 전 조회 1,673
17년 전 조회 1,694
17년 전 조회 2,353
17년 전 조회 3,443
17년 전 조회 2,375
17년 전 조회 1,777
17년 전 조회 4,463
17년 전 조회 2,270
17년 전 조회 3,694
17년 전 조회 6,271
17년 전 조회 1,722
17년 전 조회 1,872
17년 전 조회 1,461
17년 전 조회 1,564
17년 전 조회 3,117
17년 전 조회 2,141
17년 전 조회 2,822