并不需要写啊,看的就是思路,看完以后自己写一遍就OK啦,可以不用强去理解视频里面的笔误(最后又发现是笔误,不是很浪费时间)~就偈下面同学说的,有点儿面向对象的基础但没写插件经验的听这个蛮不错的
2016-07-10
为什么下载的全屏切换效果源代码与视频讲解的代码完全不同?!真奇葩。。。
前面定义的:
me.selectors = me.settings.selectors;
me.sections = me.selectors.sections;
me.section = me.selectors.section;
这些都是字符串,下面的pagesCount 返回的是字符串的长度。。。
pagesCount: function() {
return this.section.length;
}
再后面又定义了,me.pageItem,这个又是 jQuery 实例了,好混乱啊。。。
前面定义的:
me.selectors = me.settings.selectors;
me.sections = me.selectors.sections;
me.section = me.selectors.section;
这些都是字符串,下面的pagesCount 返回的是字符串的长度。。。
pagesCount: function() {
return this.section.length;
}
再后面又定义了,me.pageItem,这个又是 jQuery 实例了,好混乱啊。。。
2016-07-01