摘要: function StringBuffer(){this.data = [];}StringBuffer.prototype.append = function(){this.data.push(arguments[0]);return this;}StringBuffer.prototype.toString = function(){return this.data.join("");} ... 阅读全文
posted @ 2007-07-18 01:17 Samgle 阅读(699) 评论(1) 推荐(0)
摘要: 特点:1、兼容 IE6、FF、Opear(IE7还没有机会测试)2、拖动流畅3、起点与终点之间有过渡,使移动更平滑(可调) 演示 /* Author:misshjn HomePage:http://www.happyshow.org Date:2007-04-30 拖动开始*/function _getStyle(element,styleProp){ if (el... 阅读全文
posted @ 2007-07-18 01:13 Samgle 阅读(340) 评论(0) 推荐(0)