복스리

3D 회전식 메뉴입니다. 드레그해서 붙혀서 사용해보세요

· 2006-12-15 (금) 12:51:19 · 3954 · 1
<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>
|

댓글 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
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
07-07-16 조회 3,055
07-07-06 조회 2,915
07-07-06 조회 3,377
07-06-23 조회 3,204
07-06-16 조회 2,686
07-05-20 조회 4,202
07-05-09 조회 3,374
07-05-09 조회 6,021
07-05-04 조회 2,600
07-04-30 조회 9,728
07-04-27 조회 4,253
07-04-26 조회 3,368
07-04-25 조회 5,154
07-04-18 조회 7,704
07-04-13 조회 3,033
07-04-12 조회 6,546
07-04-12 조회 4,950
07-04-12 조회 3,270
07-04-11 조회 5,651
07-04-05 조회 6,299
07-03-24 조회 4,348
07-03-20 조회 3,656
07-03-18 조회 3,901
07-03-18 조회 4,686
07-03-17 조회 4,170
07-03-16 조회 4,078
07-03-15 조회 5,218
07-03-13 조회 5,312
07-03-13 조회 3,515
07-03-08 조회 4,438
07-03-08 조회 3,912
07-03-08 조회 3,225
07-03-08 조회 4,091
07-03-05 조회 4,321
07-03-04 조회 2,852
07-03-01 조회 5,888
07-02-28 조회 3,174
07-02-27 조회 4,339
07-02-26 조회 3,249
07-02-26 조회 2,947
07-02-23 조회 3,598
07-02-23 조회 3,565
07-02-22 조회 3,950
07-02-22 조회 3,744
07-02-19 조회 3,764
07-02-17 조회 4,790
07-02-14 조회 8,095
07-02-12 조회 3,858
07-02-10 조회 3,470
07-02-02 조회 3,702
07-01-31 조회 3,365
07-01-29 조회 3,214
07-01-25 조회 4,987
07-01-21 조회 3,163
07-01-19 조회 2,967
06-12-15 조회 3,955
06-12-15 조회 4,363
06-12-15 조회 2,857
06-12-15 조회 4,412
06-12-15 조회 3,276
06-12-15 조회 3,995
06-12-15 조회 2,961
06-12-15 조회 2,676
06-12-15 조회 4,555
06-12-15 조회 3,109
06-12-15 조회 3,181
06-12-07 조회 4,631
06-12-07 조회 3,923
06-12-04 조회 4,531
06-11-27 조회 3,618
06-11-21 조회 3,929
06-11-15 조회 3,358
06-11-04 조회 3,255
06-10-29 조회 3,910
06-10-13 조회 3,770
06-10-13 조회 4,139
06-10-13 조회 4,088
06-10-12 조회 5,292
06-10-12 조회 4,214
06-10-04 조회 3,697
06-10-02 조회 4,485
06-09-29 조회 2,979
06-09-26 조회 3,317
06-09-26 조회 3,571
06-09-26 조회 3,210
06-09-26 조회 3,371
06-09-26 조회 4,270
06-09-25 조회 4,569
06-09-22 조회 4,883
06-09-22 조회 3,466
06-09-21 조회 4,204
06-09-21 조회 4,194
06-09-21 조회 3,475
06-09-21 조회 5,138
06-09-21 조회 3,640
06-09-21 조회 3,403
06-09-20 조회 2,937
06-09-15 조회 3,074
06-09-13 조회 3,374
06-09-11 조회 3,194