It is not a great idea to change the wink elements directly; for one, it is difficult to upgrade to stay in-sync as wink advances. However, that is less difficult sometimes and perhaps an ok place for you to start.
The carousel’s “auto mode” uses the private method ‘_startAutoPlay’. To continuously cycle, you can replace this whole method with this line of code:
_startAutoPlay: function()
{
this.goToItem( (
this._currentItemIndex =
( ++this._currentItemIndex +
this._itemsList.length ) % this._itemsList.length
) );
},
An approach to enlarge the ‘centered’ panel is not much more difficult. Good luck.
Greg