腾讯微薄广播那个框框在点击的时候边框由细缓慢变粗怎么实现的?
需要代码
[解决办法]
- JScript code
$(function () { $("#文本框ID").mouseenter(function () { $(this).animate({ heigth: "50" }, "slow", "swing", null); }); $("#文本框ID").mouseleave(function () { $(this).css('height', '30px'); }); });
发布时间: 2012-07-31 12:33:46 作者: rapoo
腾讯微薄广播那个框框在点击的时候边框由细缓慢变粗怎么实现的?
需要代码
[解决办法]
$(function () { $("#文本框ID").mouseenter(function () { $(this).animate({ heigth: "50" }, "slow", "swing", null); }); $("#文本框ID").mouseleave(function () { $(this).css('height', '30px'); }); });