웹마스터 팁
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
Marquee 태그를 이용한 간단한 스크립트
2003.08.06 23:00
관리자인데도 불구하고 글 많이 못 올려 민망할 따름입니다-_-;;;
이번 소스는 그냥 심심하던차에 만들게 된 것입니다(-_-;)
응용하시면 괜찮은 무언가(?)가 나올듯;;;
그럼 소스 나갑니다^_^
Preview : http://www.zective.com/sample/marquee.html
--------------------------------------------------------------------------------------------------------------------------------------------
<!-- Created by Zective -->
<html>
<title>아니 이게 대체 뭐여º∀º)?</title>
<head>
<style>
body {font-family:tahoma; font-size:11px; color:highlight;}
A:visited {text-decoration:none; cursor:hand; font-family:tahoma; font-size:11px; color:highlight;}
A:link {text-decoration:none; cursor:hand; font-family:tahoma; font-size:11px; color:highlight;}
A:hover {text-decoration:none; cursor:hand; font-family:tahoma; font-size:11px; color:highlight;}
A:active {text-decoration:none; cursor:hand; font-family:tahoma; font-size:11px; color:highlight;}
</style>
<script>
// mq1 는 좌우 제어
// mq2는 상하 제어
// 물론 소스 수정하면 동시 제어도 가능;;
// 실행
function move(direction, kind) {
// mq1 인지 mq2 인지 구분하여 그에 맞게 Marquee 태그 실행
if(kind == 1) {
mq1.start();
} else {
mq2.start();
}
// 왼쪽 (mq1)
if(direction == 'L' || direction == 'l') {
mq1.direction = 'left';
}
// 오른쪽 (mq1)
else if(direction == 'R' || direction == 'r') {
mq1.direction = 'right';
}
// 위쪽 (mq2)
else if(direction == 'U' || direction == 'u') {
mq2.direction = 'up';
}
// 아래쪽 (mq2)
else {
mq2.direction = 'down';
}
}
// 정지
function stop(kind) {
// mq 인지 mq2 인지 구분하여 그에 맞게 Marquee 태그 정지
if(kind == 1) {
mq1.stop();
} else {
mq2.stop();
}
}
</script>
</head>
<!-- 페이지를 다 읽으면 Marquee 태그 정지 -->
<body onload="stop(1); stop(2);">
<center>
<br><br><br>
<marquee id="mq1" width="100" truespeed scrollamount="1" scrolldelay="15" bgcolor="ghostwhite" style="border:1 solid highlight;">123</marquee>
<br><br>
<a href="javascript:;" onmouseover="move('L', 1);" onmouseout="stop(1)" onfocus="this.blur();">왼쪽으로</a> | <a href="javascript:;" onmouseover="move('R', 1);" onmouseout="stop(1)" onfocus="this.blur();">오른쪽으로</a>
<!-- 에헤라디야~ -->
<br><br><br>
<!-- 에헤라디야~ -->
<marquee id="mq2" width="100" height="100" truespeed scrollamount="1" scrolldelay="15" bgcolor="ghostwhite" style="border:1 solid highlight;">123</marquee>
<br><br>
<a href="javascript:;" onmouseover="move('U', 2);" onmouseout="stop(2)" onfocus="this.blur();">위쪽으로</a> | <a href="javascript:;" onmouseover="move('D', 2);" onmouseout="stop(2)" onfocus="this.blur();">아래쪽으로</a>
<!-- 에헤라디야~ -->
<br><br><br><br><br>
<!-- 에헤라디야~ -->
<font style="font size:72px 돋움;" onmouseover="this.innerHTML='( º▽º)!';" onmouseout="this.innerHTML='( º∀º)?';" style="cursor:default;">( º∀º)?</font>
</center>
</body>
</html>
이번 소스는 그냥 심심하던차에 만들게 된 것입니다(-_-;)
응용하시면 괜찮은 무언가(?)가 나올듯;;;
그럼 소스 나갑니다^_^
Preview : http://www.zective.com/sample/marquee.html
--------------------------------------------------------------------------------------------------------------------------------------------
<!-- Created by Zective -->
<html>
<title>아니 이게 대체 뭐여º∀º)?</title>
<head>
<style>
body {font-family:tahoma; font-size:11px; color:highlight;}
A:visited {text-decoration:none; cursor:hand; font-family:tahoma; font-size:11px; color:highlight;}
A:link {text-decoration:none; cursor:hand; font-family:tahoma; font-size:11px; color:highlight;}
A:hover {text-decoration:none; cursor:hand; font-family:tahoma; font-size:11px; color:highlight;}
A:active {text-decoration:none; cursor:hand; font-family:tahoma; font-size:11px; color:highlight;}
</style>
<script>
// mq1 는 좌우 제어
// mq2는 상하 제어
// 물론 소스 수정하면 동시 제어도 가능;;
// 실행
function move(direction, kind) {
// mq1 인지 mq2 인지 구분하여 그에 맞게 Marquee 태그 실행
if(kind == 1) {
mq1.start();
} else {
mq2.start();
}
// 왼쪽 (mq1)
if(direction == 'L' || direction == 'l') {
mq1.direction = 'left';
}
// 오른쪽 (mq1)
else if(direction == 'R' || direction == 'r') {
mq1.direction = 'right';
}
// 위쪽 (mq2)
else if(direction == 'U' || direction == 'u') {
mq2.direction = 'up';
}
// 아래쪽 (mq2)
else {
mq2.direction = 'down';
}
}
// 정지
function stop(kind) {
// mq 인지 mq2 인지 구분하여 그에 맞게 Marquee 태그 정지
if(kind == 1) {
mq1.stop();
} else {
mq2.stop();
}
}
</script>
</head>
<!-- 페이지를 다 읽으면 Marquee 태그 정지 -->
<body onload="stop(1); stop(2);">
<center>
<br><br><br>
<marquee id="mq1" width="100" truespeed scrollamount="1" scrolldelay="15" bgcolor="ghostwhite" style="border:1 solid highlight;">123</marquee>
<br><br>
<a href="javascript:;" onmouseover="move('L', 1);" onmouseout="stop(1)" onfocus="this.blur();">왼쪽으로</a> | <a href="javascript:;" onmouseover="move('R', 1);" onmouseout="stop(1)" onfocus="this.blur();">오른쪽으로</a>
<!-- 에헤라디야~ -->
<br><br><br>
<!-- 에헤라디야~ -->
<marquee id="mq2" width="100" height="100" truespeed scrollamount="1" scrolldelay="15" bgcolor="ghostwhite" style="border:1 solid highlight;">123</marquee>
<br><br>
<a href="javascript:;" onmouseover="move('U', 2);" onmouseout="stop(2)" onfocus="this.blur();">위쪽으로</a> | <a href="javascript:;" onmouseover="move('D', 2);" onmouseout="stop(2)" onfocus="this.blur();">아래쪽으로</a>
<!-- 에헤라디야~ -->
<br><br><br><br><br>
<!-- 에헤라디야~ -->
<font style="font size:72px 돋움;" onmouseover="this.innerHTML='( º▽º)!';" onmouseout="this.innerHTML='( º∀º)?';" style="cursor:default;">( º∀º)?</font>
</center>
</body>
</html>
댓글 7
-
뒹굴리스트
2003.08.06 23:01
-
[아틀]아렌티
2003.08.08 10:45
아 저기요 -_- 계속 돌지 말고 -_-
끝에가면 멈추게 할수는없나요? -
Pe-i
2003.08.08 17:37
마지막 방법 '롤오버'로 응용할수도 있겠네요^-^& -
NZEO행동대장
2003.08.09 10:54
-
뒹굴리스트
2003.08.09 12:03
NZEO행동대장 // 그거 제가 올린 글입니다만...'ㅡ'); -
스티치*FREE*
2003.08.13 09:41
위/아래/왼쪽/오른쪽을 화살표로 대체하면 스크롤 안내로도 사용할 수 있을듯 -
대류
2003.08.14 12:55
공지사항용 최근게시물에 응용하면 좋겠네요
제목 | 글쓴이 | 날짜 |
---|---|---|
홈에 TT WEB FTP 달기 [12] | PHASE | 2003.09.03 |
frame으로 홈페이지 구성시 한쪽 페이지는 유동성있는 파일 대입법(?) | monozzang | 2003.09.02 |
주어진 값이 한글,영어,숫자인지 체크 [2] | 한승진 | 2003.08.29 |
전화번호 유효성 검사(핸폰,집전화 몽땅) [4] | 한승진 | 2003.08.29 |
변수에서 숫자만 리턴합니다. | 한승진 | 2003.08.29 |
변수의 실제 바이트 수를 리턴하는 팁 [2] | 한승진 | 2003.08.29 |
메인 접속하면 할아버지 나오는... [6] | 공유 | 2003.08.28 |
마우스 움직임에 따라 속도도, 방향도 자유자재 스크롤 소스 [1] | RedEye(kaist) | 2003.08.24 |
경우에 따라 공지가 새창에서도 보여야 하고, 일반 페이지에서도 보여야 할때 | 조은하루 | 2003.08.22 |
[수정]롤오버 메뉴에 하위 부메뉴 레이어..(아웃시 하위메뉴사라짐) [24] | 미니 | 2003.08.18 |
재미있는놀이 [ 숫자맞추기] [3] | NzeoZen | 2003.08.16 |
배경도 이제 선택한다!!? [2] | NzeoZen | 2003.08.16 |
편리한 컴내꺼 포트개방 (com.ne.kr FTP Port Open) [1] | phase | 2003.08.16 |
Marquee 태그를 이용한 간단한 스크립트 [7] | 뒹굴리스트 | 2003.08.06 |
나름대로 만들어본 가운데 팝업 스크립트 [3] | phase | 2003.07.31 |
HTML경고창 [수정#2] [14] | [락위듀]아렌티 | 2003.07.26 |
초강력 울트라..매가톤 간단...랜덤이미지.. [6] | 김한샘 | 2003.07.24 |
노프레임 홈페이지 수정 편리하게 &용량줄이기. [9] | 세죠위그이 | 2003.07.15 |
한줄씩 올라가는 뉴스티거용 인데요....제로보드하구는 어케...쩝 [12] | 하나비 | 2003.07.08 |
이미지 필터를 사용한 간단한 소스 [3] | NzeoZen | 2003.07.06 |
제 컴에서 돌리느냐고 테스트용 페이지 소스로 올려졌습니다(-_-;)
중간중간 쓸데없는 것들이 있으니 살포시 무시하시고 넘어가시면 되겠습니다-_-;;;;;;;;