3D 회전식 메뉴입니다. 드레그해서 붙혀서 사용해보세요
<html>
<head>
<title>http://www.blueb.co.kr</title>
</head>
<body>
<script language="JavaScript" src="http://www.blueb.co.kr/SRC/javascript/js/LyrObj.js"></script>
<script language="JavaScript" src="http://www.blueb.co.kr/SRC/javascript/js/3dhtml.js"></script>
<script language="JavaScript" src="http://www.blueb.co.kr/SRC/javascript/js/MouseModulator.js"></script>
<script language="javascript">
<!--
var cubeModel;
//메뉴구성
cubeModel = new Model("cube", new Material('<a href="http://www.blueb.co.kr" target="_blank" onfocus="blur()" style=color:red><B>BLUEB</B></a>') );
cubeModel.materials[1] = new Material('<a href="http://www.empas.com" target="_blank" onfocus="blur()" style=color:red><B>EMPAS</B></a>');
cubeModel.materials[2] = new Material('<a href="http://www.yahoo.co.kr" target="_blank" onfocus="blur()" style=color:red><B>Yahoo</B></a>');
cubeModel.materials[3] = new Material('<a href="http://www.chol.com" target="_blank" onfocus="blur()" style=color:red><B>CHOL</B></a>');
cubeModel.materials[4] = new Material('<span style="font-size:20px;"><a href="http://www.google.co.kr" target="_blank" onfocus="blur()" style=color:red><B>Google</B></a></span>');
cubeModel.materials[5] = new Material('<a href="http://www.altavista.co.kr" target="_blank" onfocus="blur()" style=color:red><B>Altavista</B></a>');
cubeModel.materials[6] = new Material('<a href="http://www.naver.com" target="_blank" onfocus="blur()" style=color:red><B>Naver</B></a>');
cubeModel.materials[7] = new Material('<a href="http://www.Jungle.com" target="_blank" onfocus="blur()" style=color:red><B>Jungle</B></a>');
cubeModel.setPoints(createCubeModelPoints());
var myMouseModulator = new MouseModulator("myMouseModulator", 0);
function initOnLoad() {
fixNetscape();
cubeModel.assignLayers();
// creates and inits matrix to initialize the model
var initMatrix = new Matrix();
initMatrix.scale(50, 50, 50);
// >> begin to work with the model etc.
// initializes model
cubeModel.transform(initMatrix);
// >> first draw of the model (recommended)
cubeModel.draw();
// starts animation
animate();
}
/*
* The main animate method. Calls itself repeatedly.
*/
function animate() {
var delay = 10;
// animates cube model ----------------------------------------
// animates the modulator to spin the cube
myMouseModulator.animate();
// transforms the cube depending on mouse movements.
cubeModel.transform(myMouseModulator.getMatrix());
// updates display
cubeModel.draw();
// calls itself with an delay to decouple client computer speed from the animation speed.
// result: the animation is as fast as possible.
setTimeout("animate()", delay);
}
// event handling
document.onmousemove = mouseMoveHandler;
document.onmousedown = mouseDownHandler;
document.onmouseup = mouseUpHandler;
if (ns || ns6) document.captureEvents(Event.MOUSEMOVE | Event.MOUSEDOWN | Event.MOUSEUP);
/*
* The mouse handlers in this document must call the modulator's handlers.
* To be able to use a mouse modulator and to do your own stuff.
*/
function mouseMoveHandler(e) {
// calls move handler of the mouse modulator
myMouseModulator.move(e);
return !ie;
}
function mouseDownHandler(e) {
// calls down handler of the mouse modulator
myMouseModulator.down(e);
}
function mouseUpHandler(e) {
// calls up handler of the mouse modulator
myMouseModulator.up(e);
}
// ---------------------------------------------------------------------------
function createCubeModelPoints() {
// the cube model
return new Array(
new Point3D( 0, 5, 0, 0),
new Point3D( 3.5, 3.5, 0, 1),
new Point3D( 5, 0, 0, 2),
new Point3D( 3.5, -3.5, 0, 3),
new Point3D( 0, -5, 0, 4),
new Point3D(-3.5, -3.5, 0, 5),
new Point3D( -5, 0, 0, 6),
new Point3D(-3.5, 3.5, 0, 7)
);
}
// -->
</script>
</head>
<body onload="initOnLoad()">
배경 아무곳이나 드래그 해보세요..
<div id="fixnetscape" style="position:absolute;visibility:hidden;z-index:1000"></div>
<script language="JavaScript" type="text/javascript">
<!--
cubeModel.createPointCode();
// -->
</script>
</body>
</html><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
<head>
<title>http://www.blueb.co.kr</title>
</head>
<body>
<script language="JavaScript" src="http://www.blueb.co.kr/SRC/javascript/js/LyrObj.js"></script>
<script language="JavaScript" src="http://www.blueb.co.kr/SRC/javascript/js/3dhtml.js"></script>
<script language="JavaScript" src="http://www.blueb.co.kr/SRC/javascript/js/MouseModulator.js"></script>
<script language="javascript">
<!--
var cubeModel;
//메뉴구성
cubeModel = new Model("cube", new Material('<a href="http://www.blueb.co.kr" target="_blank" onfocus="blur()" style=color:red><B>BLUEB</B></a>') );
cubeModel.materials[1] = new Material('<a href="http://www.empas.com" target="_blank" onfocus="blur()" style=color:red><B>EMPAS</B></a>');
cubeModel.materials[2] = new Material('<a href="http://www.yahoo.co.kr" target="_blank" onfocus="blur()" style=color:red><B>Yahoo</B></a>');
cubeModel.materials[3] = new Material('<a href="http://www.chol.com" target="_blank" onfocus="blur()" style=color:red><B>CHOL</B></a>');
cubeModel.materials[4] = new Material('<span style="font-size:20px;"><a href="http://www.google.co.kr" target="_blank" onfocus="blur()" style=color:red><B>Google</B></a></span>');
cubeModel.materials[5] = new Material('<a href="http://www.altavista.co.kr" target="_blank" onfocus="blur()" style=color:red><B>Altavista</B></a>');
cubeModel.materials[6] = new Material('<a href="http://www.naver.com" target="_blank" onfocus="blur()" style=color:red><B>Naver</B></a>');
cubeModel.materials[7] = new Material('<a href="http://www.Jungle.com" target="_blank" onfocus="blur()" style=color:red><B>Jungle</B></a>');
cubeModel.setPoints(createCubeModelPoints());
var myMouseModulator = new MouseModulator("myMouseModulator", 0);
function initOnLoad() {
fixNetscape();
cubeModel.assignLayers();
// creates and inits matrix to initialize the model
var initMatrix = new Matrix();
initMatrix.scale(50, 50, 50);
// >> begin to work with the model etc.
// initializes model
cubeModel.transform(initMatrix);
// >> first draw of the model (recommended)
cubeModel.draw();
// starts animation
animate();
}
/*
* The main animate method. Calls itself repeatedly.
*/
function animate() {
var delay = 10;
// animates cube model ----------------------------------------
// animates the modulator to spin the cube
myMouseModulator.animate();
// transforms the cube depending on mouse movements.
cubeModel.transform(myMouseModulator.getMatrix());
// updates display
cubeModel.draw();
// calls itself with an delay to decouple client computer speed from the animation speed.
// result: the animation is as fast as possible.
setTimeout("animate()", delay);
}
// event handling
document.onmousemove = mouseMoveHandler;
document.onmousedown = mouseDownHandler;
document.onmouseup = mouseUpHandler;
if (ns || ns6) document.captureEvents(Event.MOUSEMOVE | Event.MOUSEDOWN | Event.MOUSEUP);
/*
* The mouse handlers in this document must call the modulator's handlers.
* To be able to use a mouse modulator and to do your own stuff.
*/
function mouseMoveHandler(e) {
// calls move handler of the mouse modulator
myMouseModulator.move(e);
return !ie;
}
function mouseDownHandler(e) {
// calls down handler of the mouse modulator
myMouseModulator.down(e);
}
function mouseUpHandler(e) {
// calls up handler of the mouse modulator
myMouseModulator.up(e);
}
// ---------------------------------------------------------------------------
function createCubeModelPoints() {
// the cube model
return new Array(
new Point3D( 0, 5, 0, 0),
new Point3D( 3.5, 3.5, 0, 1),
new Point3D( 5, 0, 0, 2),
new Point3D( 3.5, -3.5, 0, 3),
new Point3D( 0, -5, 0, 4),
new Point3D(-3.5, -3.5, 0, 5),
new Point3D( -5, 0, 0, 6),
new Point3D(-3.5, 3.5, 0, 7)
);
}
// -->
</script>
</head>
<body onload="initOnLoad()">
배경 아무곳이나 드래그 해보세요..
<div id="fixnetscape" style="position:absolute;visibility:hidden;z-index:1000"></div>
<script language="JavaScript" type="text/javascript">
<!--
cubeModel.createPointCode();
// -->
</script>
</body>
</html><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
댓글 1개
18년 전
-. 미리보기
http://www.blueb.co.kr/bbs.php?table=JS_03&where=ALL&keyword=3D%20회전&search_step=1&search_sql=(BB_NAME%20LIKE%20'%3D%'%20OR%20BB_SUBJECT%20LIKE%20'%3D%'%20OR%20BB_CONTENT%20LIKE%20'%3D%')%20OR%20(BB_NAME%20LIKE%20'%회전%'%20OR%20BB_SUBJECT%20LIKE%20'%회전%'%20OR%20BB_CONTENT%20LIKE%20'%회전%')&search_sql=(BB_NAME%20LIKE%20'=%'%20OR%20BB_SUBJECT%20LIKE%20'=%'%20OR%20BB_CONTENT%20LIKE%20'=%')%20OR%20(BB_NAME%20LIKE%20'%회전%'%20OR%20BB_SUBJECT%20LIKE%20'%회전%'%20OR%20BB_CONTENT%20LIKE%20'%회전%')&query=view&uid=132&p=1
http://www.blueb.co.kr/bbs.php?table=JS_03&where=ALL&keyword=3D%20회전&search_step=1&search_sql=(BB_NAME%20LIKE%20'%3D%'%20OR%20BB_SUBJECT%20LIKE%20'%3D%'%20OR%20BB_CONTENT%20LIKE%20'%3D%')%20OR%20(BB_NAME%20LIKE%20'%회전%'%20OR%20BB_SUBJECT%20LIKE%20'%회전%'%20OR%20BB_CONTENT%20LIKE%20'%회전%')&search_sql=(BB_NAME%20LIKE%20'=%'%20OR%20BB_SUBJECT%20LIKE%20'=%'%20OR%20BB_CONTENT%20LIKE%20'=%')%20OR%20(BB_NAME%20LIKE%20'%회전%'%20OR%20BB_SUBJECT%20LIKE%20'%회전%'%20OR%20BB_CONTENT%20LIKE%20'%회전%')&query=view&uid=132&p=1
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 530 |
|
19년 전 | 1218 | |
| 529 |
|
19년 전 | 1393 | |
| 528 |
|
19년 전 | 1959 | |
| 527 |
사랑과우정
|
19년 전 | 2383 | |
| 526 | 19년 전 | 2856 | ||
| 525 |
|
19년 전 | 2289 | |
| 524 |
|
19년 전 | 1785 | |
| 523 | 19년 전 | 7018 | ||
| 522 |
|
19년 전 | 3708 | |
| 521 | 19년 전 | 2318 | ||
| 520 | 19년 전 | 2343 | ||
| 519 | 19년 전 | 2819 | ||
| 518 |
|
19년 전 | 5758 | |
| 517 |
|
19년 전 | 5536 | |
| 516 |
|
19년 전 | 2235 | |
| 515 |
|
19년 전 | 3276 | |
| 514 | 19년 전 | 2844 | ||
| 513 | 19년 전 | 2197 | ||
| 512 |
개발자관리자
|
19년 전 | 2713 | |
| 511 |
개발자관리자
|
19년 전 | 1564 | |
| 510 |
개발자관리자
|
19년 전 | 1721 | |
| 509 |
개발자관리자
|
19년 전 | 1813 | |
| 508 |
개발자관리자
|
19년 전 | 1988 | |
| 507 |
개발자관리자
|
19년 전 | 1665 | |
| 506 |
개발자관리자
|
19년 전 | 1794 | |
| 505 |
개발자관리자
|
19년 전 | 1762 | |
| 504 |
개발자관리자
|
19년 전 | 1832 | |
| 503 |
개발자관리자
|
19년 전 | 1509 | |
| 502 |
개발자관리자
|
19년 전 | 2630 | |
| 501 | 19년 전 | 1971 | ||
| 500 | 19년 전 | 3219 | ||
| 499 | 19년 전 | 3246 | ||
| 498 | 19년 전 | 2506 | ||
| 497 | 19년 전 | 2593 | ||
| 496 | 19년 전 | 2424 | ||
| 495 | 19년 전 | 2680 | ||
| 494 | 19년 전 | 2665 | ||
| 493 | 19년 전 | 3147 | ||
| 492 | 19년 전 | 2862 | ||
| 491 | 19년 전 | 5270 | ||
| 490 |
|
19년 전 | 2098 | |
| 489 |
|
19년 전 | 2182 | |
| 488 |
|
19년 전 | 1990 | |
| 487 |
|
19년 전 | 1921 | |
| 486 |
|
19년 전 | 1921 | |
| 485 |
|
19년 전 | 2113 | |
| 484 |
|
19년 전 | 3184 | |
| 483 |
|
19년 전 | 3058 | |
| 482 |
|
19년 전 | 2826 | |
| 481 |
|
19년 전 | 2528 | |
| 480 |
|
19년 전 | 2611 | |
| 479 |
|
19년 전 | 2275 | |
| 478 |
|
19년 전 | 2318 | |
| 477 |
개발자관리자
|
19년 전 | 1574 | |
| 476 |
개발자관리자
|
19년 전 | 2300 | |
| 475 |
개발자관리자
|
19년 전 | 2648 | |
| 474 |
개발자관리자
|
19년 전 | 2638 | |
| 473 |
개발자관리자
|
19년 전 | 2944 | |
| 472 | 19년 전 | 2723 | ||
| 471 | 19년 전 | 1694 | ||
| 470 | 19년 전 | 1803 | ||
| 469 |
|
19년 전 | 2703 | |
| 468 |
|
19년 전 | 2206 | |
| 467 |
|
19년 전 | 3966 | |
| 466 |
|
19년 전 | 2475 | |
| 465 | 19년 전 | 2358 | ||
| 464 | 19년 전 | 3506 | ||
| 463 |
|
19년 전 | 3080 | |
| 462 |
|
19년 전 | 2221 | |
| 461 |
|
19년 전 | 3011 | |
| 460 |
|
19년 전 | 2222 | |
| 459 |
|
19년 전 | 3078 | |
| 458 |
|
19년 전 | 3504 | |
| 457 |
|
19년 전 | 5192 | |
| 456 |
|
19년 전 | 3117 | |
| 455 |
스마일미디어
|
19년 전 | 3112 | |
| 454 |
스마일미디어
|
19년 전 | 2686 | |
| 453 |
스마일미디어
|
19년 전 | 2437 | |
| 452 |
스마일미디어
|
19년 전 | 2696 | |
| 451 |
스마일미디어
|
19년 전 | 2425 | |
| 450 |
스마일미디어
|
19년 전 | 2541 | |
| 449 |
스마일미디어
|
19년 전 | 2340 | |
| 448 |
스마일미디어
|
19년 전 | 2679 | |
| 447 | 19년 전 | 2946 | ||
| 446 |
스마일미디어
|
19년 전 | 3234 | |
| 445 |
스마일미디어
|
19년 전 | 7033 | |
| 444 |
스마일미디어
|
19년 전 | 5157 | |
| 443 |
스마일미디어
|
19년 전 | 2408 | |
| 442 |
스마일미디어
|
19년 전 | 5140 | |
| 441 |
스마일미디어
|
19년 전 | 3087 | |
| 440 |
|
19년 전 | 2436 | |
| 439 | 19년 전 | 2126 | ||
| 438 | 19년 전 | 3552 | ||
| 437 |
|
19년 전 | 2865 | |
| 436 |
|
19년 전 | 3241 | |
| 435 |
|
19년 전 | 2862 | |
| 434 | 19년 전 | 3365 | ||
| 433 |
sjsjin
|
19년 전 | 2689 | |
| 432 |
sjsjin
|
19년 전 | 3442 | |
| 431 |
sjsjin
|
19년 전 | 2400 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기