2007년 6월 21일 목요일

구글(Google) 기능메뉴의 효과 따라해보기 분류없음

사용자 삽입 이미지사용자 삽입 이미지사용자 삽입 이미지사용자 삽입 이미지사용자 삽입 이미지

<DIV id="margarinFrame" style="width:40px;height:40px;overflow:hidden;">
    <DIV id="margarinImage" style="width:40px;height:280px;background:url('margarin.png');"></DIV>
</DIV>

 

<script language="javascript">
<!--
    function moveScroll()
    {
        setTimeout("imageTimer(0)",130);
    }
    function imageTimer(pIndex)
    {
        var margarinFrame        = document.getElementById("margarinFrame");
        if(pIndex < 8)
        {
margarinFrame.scrollTop = pIndex*40;
            setTimeout("imageTimer(" + (pIndex +1) + ")",130);
        }
    }
-->
</script>
<input type="button" value=" 실 행 " onClick="moveScroll();">
<DIV id="margarinFrame" style="width:40px;height:40px;overflow:hidden;">
    <DIV id="margarinImage" style="width:40px;height:280px;background:url('margarin.png');"></DIV>
</DIV>

댓글 없음: