So what do you do:
- Install the DEFAULT addon
- Go to
ContentFlowAddOn_DEFAULT.js and search:
alcCoordinates: function (item) {
var rP = item.relativePosition;
// var rPN = item.relativePositionNormed;
var vI = this.conf.visibleItems;
var f = 1 - 1 / Math.exp (Math.abs (rP) * 0.75);
var x = item.side * vI / (vI + 1) * f;
var y = 1;
return {x: x, y: y};
},
You are particularly interested in the number 0.75 at the end of var f .
- change it to
1.75 or higher, depending on your preference.
Cacofonix
source share