码迷,mamicode.com
首页 > 其他好文 > 详细

下拉菜单

时间:2016-07-04 21:49:40      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

 <script>
        var timer1 = null;
        var oDiv1 = document.getElementById("div1");

        Move(oDiv1, timer1);

        var timer2 = null;
        var oDiv3 = document.getElementById("div3");
        Move(oDiv3, timer2);


        function Move(oDiv, timer) {

            oDiv.onmouseover = function () {
                if (oDiv.offsetHeight < 390) {
                    clearInterval(timer);
                    timer = window.setInterval(function () {

                        oDiv.style.height = (oDiv.offsetHeight + 10) + ‘px‘;

                        if (oDiv.offsetHeight >= 400) {
                            clearInterval(timer);
                        }

                    }, 20);
                }
            };

            oDiv.onmouseout = function () {

                if (oDiv.offsetHeight > 50) {
                    clearInterval(timer);
                    timer = window.setInterval(function () {

                        oDiv.style.height = (oDiv.offsetHeight - 10) + ‘px‘;
                        if (oDiv.offsetHeight <= 50) {
                            clearInterval(timer);
                        }

                    }, 20);
                }
            };
        }

    </script>

  

下拉菜单

标签:

原文地址:http://www.cnblogs.com/songfengyao/p/5641630.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!