refactor: update Marks style algorithm

This commit is contained in:
Benjy Cui
2016-03-22 17:21:50 +08:00
parent 6347b6d0c6
commit 73b9953084
+5 -2
View File
@@ -16,8 +16,11 @@ const Marks = ({className, marks, included, upperBound, lowerBound, max, min}) =
[className + '-text-active']: isActived,
});
const style = { width: markWidth + '%' };
style.left = (point - min) / range * 100 - markWidth / 2 + '%';
const style = {
width: markWidth + '%',
marginLeft: -markWidth / 2 + '%',
};
style.left = (point - min) / range * 100 + '%';
const markPoint = marks[point];
const markPointIsObject = typeof markPoint === 'object' &&