...
|
...
|
@@ -21,6 +21,10 @@ var $ = require('yoho.jquery'), |
|
|
|
|
|
Slider.prototype = {
|
|
|
init: function() {
|
|
|
if (!this.$element) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
if (this.len <= 1) {
|
|
|
lazyLoad(this.$element.find('img.lazy'));
|
|
|
return;
|
...
|
...
|
@@ -126,7 +130,13 @@ var $ = require('yoho.jquery'), |
|
|
|
|
|
|
|
|
this.smallItem.eq(this.index).addClass('focus').siblings().removeClass('focus');
|
|
|
this.bigItem.eq(this.index).fadeIn().siblings().fadeOut();
|
|
|
this.bigItem.eq(this.index).show().stop().animate({
|
|
|
opacity: 1
|
|
|
}).siblings().stop().animate({
|
|
|
opacity: 0
|
|
|
}, function() {
|
|
|
$(this).hide();
|
|
|
});
|
|
|
},
|
|
|
_autoplay: function() {
|
|
|
var that = this;
|
...
|
...
|
|