日期:2014-05-16  浏览次数:20366 次

腾讯微薄广播那个框框在点击的时候边框由细缓慢变粗怎么实现的?
需要代码

------解决方案--------------------
JScript code

            $(function () {
                $("#文本框ID").mouseenter(function () {
                    $(this).animate({ heigth: "50" }, "slow", "swing", null);
                });
                $("#文本框ID").mouseleave(function () { $(this).css('height', '30px'); });
            });