纵向 动态导航

<p>
<meta content="text/html; charset=gb2312" http-equiv="Content-Type" /><style type="text/css">
            *{ margin:0px; padding:0px;}
            body { background:#fff;}
            .naver{
                list-style-type: none;
                width:700px;
                overflow:hidden;
                margin:100px auto 0;
                }
            .naver li{
                width:180px;
                height:50px;
                overflow:hidden;
                font-size:16px;
                text-align:center;
                cursor: pointer;
                }
            .naver li a,.naver li a:hover{
                display: block;
                width:180px;
                height:50px;
                line-height: 50px;
                color:#FFF;
                text-decoration: none;
                }
            .co1{ background:#649e37}
            .co2{ background:#028fbc}
        </style></p>
<script type="text/javascript">
            window.onload = function() {
                var oUl = document.getElementById("nav");
                var aLi = oUl.getElementsByTagName("li");
                var i = 0;
                for (i = 0; i < aLi.length; i++) {
                    aLi[i].timer = null;
                    aLi[i].speed = 0;
                    aLi[i].onmouseover = function() {
                        startMove(this, 400);//移动的最长
                    };
                    aLi[i].onmouseout = function() {
                        startMove2(this, 180);//移动完 之后的停止
                    };
                }
            };

            function startMove(obj, iTarget) {
                if (obj.timer) {
                    clearInterval(obj.timer);
                }
                obj.timer = setInterval(function() {
                    doMove(obj, iTarget);
                }, 30)
            };

            function doMove(obj, iTarget) {
                obj.speed += 3;
                if (Math.abs(iTarget - obj.offsetWidth) < 1 && Math.abs(obj.speed) < 1) {
                    clearInterval(obj.timer);
                    obj.timer = null;
                }
                else {
                    if (obj.offsetWidth + obj.speed >= iTarget) {
                        obj.speed *= -0.7;
                        obj.style.width = iTarget + "px";
                    }
                    else {
                        obj.style.width = obj.offsetWidth + obj.speed + "px";
                    }
                }
            };

            function startMove2(obj, iTarget) {
                if (obj.timer) {
                    clearInterval(obj.timer);
                }
                obj.timer = setInterval(function() {
                    doMove2(obj, iTarget);
                }, 30)
            };

            function doMove2(obj, iTarget) {
                obj.speed -= 3;
                if (Math.abs(iTarget - obj.offsetWidth) < 1 && Math.abs(obj.speed) < 1) {
                    clearInterval(obj.timer);
                    obj.timer = null;
                }
                else {
                    if (obj.offsetWidth + obj.speed <= iTarget) {
                        obj.speed *= -0.7;
                        obj.style.width = iTarget + "px";
                    }
                    else {
                        obj.style.width = obj.offsetWidth + obj.speed + "px";
                    }
                }
            };
        </script>
<ul id="nav" class="naver">
    <li class="co1"><a href="http://www.xker.com">首页</a></li>
    <li class="co2"><a href="http://www.xker.com/edu/website/">网页制作</a></li>
    <li class="co1"><a href="www.xker.com/js/">特效</a></li>
    <li class="co2"><a href="http://www.xker.com/edu/mediamovice/">动画</a></li>
    <li class="co1"><a href="http://www.xker.com/free/">免费资源</a></li>
    <li class="co2"><a href="http://www.xker.com/free/">免费资源</a></li>
</ul>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值