1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- var platform = '';
- if (typeof navigator !== 'undefined') {
- platform = navigator.platform || '';
- }
- var _default = {
-
-
-
-
-
-
-
- color: ['#c23531', '#2f4554', '#61a0a8', '#d48265', '#91c7ae', '#749f83', '#ca8622', '#bda29a', '#6e7074', '#546570', '#c4ccd3'],
- gradientColor: ['#f6efa6', '#d88273', '#bf444c'],
-
-
- textStyle: {
-
-
-
- fontFamily: platform.match(/^Win/) ? 'Microsoft YaHei' : 'sans-serif',
-
- fontSize: 12,
- fontStyle: 'normal',
- fontWeight: 'normal'
- },
-
-
-
- blendMode: null,
- animation: 'auto',
- animationDuration: 1000,
- animationDurationUpdate: 300,
- animationEasing: 'exponentialOut',
- animationEasingUpdate: 'cubicOut',
- animationThreshold: 2000,
-
- progressiveThreshold: 3000,
- progressive: 400,
-
-
-
-
-
- hoverLayerThreshold: 3000,
-
- useUTC: false
- };
- module.exports = _default;
|