고객센터 : 031-548-0481 /호스팅문의:1644-2646 /서버호스팅문의 : 070-7573-5515/ 평일근무 : 09:00~18:00 / 토/일요일, 공휴일 휴무

1:1 고객상담문의 FAQ 자동답변

나노코팅 나노엔

구매안내

  • 아티보드 2.0
  • 아티보드 3.0
  • 아티카페
  • 파일공유사이트
솔루션 > 커뮤니티 > 사용팁

사용팁|

StrBoardId가 다른 갤러리게시판들 최신 6개 뽑아 스크롤링 시키기(허접해서죄송 ㅠㅠ)|아티보드2.0

  • 조성범
  • |조회수 : 3033
  • |추천수 : 0
  • |2007-06-14 오후 2:15:11
<!-- #include file = "Dbconnect/Dbconnect.asp" -->
<!-- #include file = "Library/Function.asp" -->
<script language=javascript>
<!--
var downLayerId;
var dropDegree = 5; //스크롤 속도
var doDirect;
var DirectTerm = 2000; //스크롤 지연시간
var curDropIdx = 0;
function DirectDown()
{
clearInterval(doDirect);
clearInterval(downLayerId);
for(i = curDropIdx ;i < document.all["DropHit"].length + curDropIdx;i++){
  document.all["DropHit"][i%document.all["DropHit"].length].style.posTop = document.all["DropHit"][i%document.all["DropHit"].length].style.posHeight * (-1*((i-curDropIdx)%document.all["DropHit"].length));
}
var temp = 'setInterval("DownLayer()",20)';
downLayerId = eval(temp);
direction = "down";
}
function DownLayer()
{
if(document.all["DropHit"][curDropIdx].style.posTop < document.all["DropHit"][curDropIdx].style.posHeight){
  for(j = curDropIdx ;j < document.all["DropHit"].length + curDropIdx;j++){
   document.all["DropHit"][j%document.all["DropHit"].length].style.posTop += dropDegree;
  }
}else{
  clearInterval(downLayerId);
  for(j = curDropIdx ;j < document.all["DropHit"].length + curDropIdx;j++){
   document.all["DropHit"][j%document.all["DropHit"].length].style.posTop = document.all["DropHit"][j%document.all["DropHit"].length].style.posHeight *((-1*((j-curDropIdx)%document.all["DropHit"].length))+1);
  }
  curDropIdx = (curDropIdx + 1) ;
  curDropIdx = curDropIdx > document.all["DropHit"].length-1 ? curDropIdx%document.all["DropHit"].length:curDropIdx;
  var temp = 'setInterval("DirectDown()",DirectTerm)';
  doDirect = eval(temp);
}
}
function DirectUp()
{
clearInterval(doDirect);
clearInterval(downLayerId);
var tempIdx = 0;
for(i = 0;i<document.all["DropHit"].length;i++){
  tempIdx = (document.all["DropHit"].length + curDropIdx - i) %document.all["DropHit"].length;
  document.all["DropHit"][tempIdx].style.posTop = i*document.all["DropHit"][tempIdx].style.posHeight;
}
var temp = 'setInterval("UpLayer()",20)';
downLayerId = eval(temp);
direction = "up";
}
function UpLayer()
{
var tempIdx = 0;
if(document.all["DropHit"][curDropIdx].style.posTop < document.all["DropHit"][curDropIdx].style.posHeight && document.all["DropHit"][curDropIdx].style.posTop > document.all["DropHit"][curDropIdx].style.posHeight * (-1)){
  for(j = 0 ;j < document.all["DropHit"].length;j++){
   tempIdx = (document.all["DropHit"].length + curDropIdx - j) %document.all["DropHit"].length;
   document.all["DropHit"][tempIdx].style.posTop -= dropDegree;
  }
}else{
  clearInterval(downLayerId);
  for(j = 0;j<document.all["DropHit"].length;j++){
   tempIdx = (document.all["DropHit"].length + curDropIdx - j) % document.all["DropHit"].length;
   document.all["DropHit"][tempIdx].style.posTop = (j-1)*(document.all["DropHit"][tempIdx].style.posHeight);
  }
  curDropIdx = (curDropIdx - 1) ;
  curDropIdx = curDropIdx < 0 ? document.all["DropHit"].length-1:curDropIdx;
  var temp = 'setInterval("DirectUp()",DirectTerm)';
  doDirect = eval(temp);
}
}
//-->
</script>
<link href="CSS/style.css" rel="stylesheet" type="text/css" />
<body onLoad="DirectUp();">
<%
 SET RS = DBCON.EXECUTE("select top 6 intSeq, strBoardID, strName, strSubject, strContent, strFileImage = (select top 1 strFileName from mplus_board_file where strFileCode = mplus_board.strFileCode), dateRegDate from mplus_board where strBoardID like '58gallery%' AND [bitDelete] = 0 AND [bitBad] = 0 AND [bitCheck] = 1 order by intSeq desc")
 IF

댓글 3

겔러리 게시판이 그럼 6개가 존재해야 하는지요 1개를 쓰고있

  • 최백호
  • 2007.06.21 11:11
<% SET RS = DBCON.EXECUTE("select top 6 intSeq, strBoardID, strName, strSubject, strContent, strFileImage = (select top 1 strFileName from mplus_board_file where strFileCode = mplus_board.strFileCode), dateRegDate from mplus_board where strBoardID like '58gallery%' AND [bitDelete] = 0 AND [bitBad] = 0 AND [bitCheck] = 1 order by intSeq desc") IF RS.EOF THEN

수정 삭제

소스를 테이블에 삽입을 했는데 위 아래로 2개가 한번에 나오고 다음에는 중간에 한번 이렇게 스크롤이 됩니다. position:absolute로 하면 왼쪽 위 모퉁이에 정상적으로 스크롤이 되는데 positio

번호 제목 닉네임 조회수 작성일
135 XP Pro에서 폴더별 권한 설정방법 [2] 정기성 2885 2006.09.11
134 windows server 2008 에서의 iis7에서 asp 작동시.. [1] Skynote 3054 2011.06.27
133 Windows 2003 Server 설치 WINBBS 기본내용 총정리.. [1] 박인영 3225 2007.12.03
132 UTF-8 <--> ANSI 상호 변환 프로그램 [3] file photo 최백호 2946 2008.11.14
131 TABS Upload 4.3 x86 - 4.0 x86 버전 입니다. .. file photo 최백호 3955 2011.12.20
StrBoardId가 다른 갤러리게시판들 최신 6개 뽑아 스크롤링 시.. [3] 조성범 3033 2007.06.14
129 SQL Server용 Microsoft OLE DB 공급자 error.. [2] 웹아티 3144 2006.03.03
128 SQL Injection 의 대응법 2탄 [프로그램 EXE] [4] file 최백호 4165 2008.11.27
127 SQL Express 버전에서의 OLEDB 연결 [3] 이재원 5084 2009.11.16
126 nmail을 사용하시면서 아팁보드에서 메일발송시 HTML형태로 발송이.. [1] 김유진 2835 2007.05.12
125 Microsoft® SQL Server® 2008 Express .. 최백호 2557 2011.11.25
124 Microsoft SQL Server 2000: 연결 문제 해결 방법 [2] 웹아티 3306 2006.03.03
123 Mass SQL Injection 의 대응법 [3] 에버클럽 3462 2008.11.24
122 jquery를 이용한 오른쪽 퀵메뉴 최백호 2787 2011.11.25
121 Jquery 체크박스 사용법 최백호 2532 2011.11.25
120 iframe 크기 안에 들어가는 아티보드에 맞게 폭, 높이 자동으로 .. [2] 최백호 3426 2007.08.01
119 IE패치로 인한 플래쉬/미디어 제대로 나오게하기!!! [2] file 최백호 3075 2008.04.10
118 IE6설계변경패치 예제파일 및 파워포인트자료 [3] file KINvirus 2534 2006.03.02
117 GeoIP 국가별 IP 체크 방법 file 최백호 2783 2011.11.25
116 DB설치오류와 대처(동영상)-"sql이 없거나 액세스 할 수 없습니다" [4] file 김경혜 3953 2009.01.28