Показать сообщение отдельно
  #2 (permalink)  
Старый 22.12.2011, 22:11
Аватар для nerv_
junior
Отправить личное сообщение для nerv_ Посмотреть профиль Найти все сообщения от nerv_
 
Регистрация: 29.11.2011
Сообщений: 3,924

\примерно так
<html>
    <head>
        <meta charset="utf-8">
        <style type="text/css">
            body { margin: 15px; }
            div { background-color:green; height:50px; width:50px; }
        </style>
        <script type="text/javascript">
            var l;
            (function() {
                var h, w, t;
                l = function(b) {
                    var x = document.getElementsByTagName("div")[0];
                    var j = x.currentStyle || window.getComputedStyle(x, null);
                    h = j.height.replace(/\D/g,"") - 0;
                    w = j.width.replace(/\D/g,"") - 0;
                    clearTimeout(t);
                    if(b) {
                        if(h < 100) {
                            x.style.height = (h += 2) + "px";
                            x.style.width = (w += 4) + "px";
                            t = setTimeout(function() {l(true)}, 50);
                        }
                    }
                    else {
                        if(h > 50) {
                            x.style.height = (h -= 2) + "px";
                            x.style.width = (w -= 4) + "px";
                            t = setTimeout(function() {l(false)}, 50);
                        }
                    }
                }
            })();
        </script>
    </head>
    <body>
        <div onmouseover="l(true);" onmouseout="l(false);"></div>
    </body>
</html>
__________________
Чебурашка стал символом олимпийских игр. А чего достиг ты?
Тишина - самый громкий звук
Ответить с цитированием