已采纳回答 / 蜀北乔少恭
你在zIndexArr.push(zIndex);后面答应一些数据,再在animate执行完毕之后的回调函数后再打印一个数据,this.posterItems.each(function(){ var self = $(this), prev = self.prev().get(0)?self.prev():_this_.posterLastItem, width = prev.width(), height = prev.height() zIndex = pre...
2016-04-03
感觉本课程的难度稍大,涉及了很多面向对象的编程思想,还有对原型,this,类的封装,jQ的基本操作等基础知识的综合利用,还有幻灯片切换的方法,包含宽高,位置,旋转,渐变,层级散列关系等思路的讲解,以及怎么实现默认参数,人工设置参数来控制幻灯片的播放,还有更多的细节方面的把握,感觉受益匪浅。
完成地址Demo: https://huanyouchen.github.io/demo/imooc/Carousel-poster/index.html
代码:https://github.com/guihailiuli/imooc-practice/tree/master/Carousel-poster
完成地址Demo: https://huanyouchen.github.io/demo/imooc/Carousel-poster/index.html
代码:https://github.com/guihailiuli/imooc-practice/tree/master/Carousel-poster
2016-03-11
已采纳回答 / 陈mou
因为旋转的时候第一张图片会先设置上最后一张的zindex值,然后循环的时候第二张会获取第一张的zindex值,所以一直循环下去的话全部都会设成最后一张的zindex 而使用animation的话它是先绑定上去但是是有一段过渡期去渐变成那个值。拓展一下的话就是如果each函数每一步执行的时间过长(以至于长过了animation的过渡时间)那么animation也会和.css一样的效果
2016-03-06
最赞回答 / weibo_奇鳞池粼_0
这样写是将自执行函数内的Carousel函数设置成全局对象window的属性,相当于window.Carousel = Carousel,也就是说将Carousel函数设置成全局函数。要是想将Carousel设置成jQuery的插件,可以将Carousel写成jQuery的属性,即jQuery.Carousel = Carousel。
2016-02-01