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