list.js 602 Bytes
/**
 * founder : zzf
 * Creation time :  2014/12/8
 * note :
 * role : The current page js
 */

define(function( require, exports, module ) {
    var _Droll = require( "droll" ),
        _Base = require( 'base' );
    $(function () {
        new _Droll( $( '#goods-recommend2 .recommend-list' )[0],{
            step        : $( '#goods-recommend2 li' ).width() + 35,
            moveNum     : 6,
            dirButton   : true,
            Media:true,// 轮播图适应响应式
            onBeforeInView:function( list ){
                _Base.handLazy( list );
            }
        });
    });
});