摘要: function nextPage() { /* 克隆第一张图片并添加到box后 box前移一张图片的距离动画 动画回调里把box的left值设为0 删除第一张图片 */ $(".mypng li:first-child").clone().appendTo($(".mypng")); $(".m... 阅读全文
posted @ 2015-08-28 21:46 lily white 阅读(378) 评论(0) 推荐(0) 编辑
摘要: var timer; //绑定hover事件 $(function () { $(".centercy img").hover(showPic, hidePic); }); //显示图片 function showPic() { var el = $(this), imgUrl = "url(... 阅读全文
posted @ 2015-08-28 21:45 lily white 阅读(309) 评论(0) 推荐(0) 编辑
摘要: var pieChart = { width: 600, height: 400, series: [], unit: "kg", chartCanvas: null, selectable : true, title: "Pie Chart", le... 阅读全文
posted @ 2015-08-28 21:43 lily white 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 1.生成重复的字符串if(!String.repeat){ String.prototype.repeat = function (count){ return new Array(count + 1).join(this); }}2.去除开头和结尾的空字符if(!Stri... 阅读全文
posted @ 2015-08-28 21:42 lily white 阅读(162) 评论(0) 推荐(0) 编辑