UNPKG

@cataract6545/tmui

Version:

tm-vuetify是一个新势力由主题驱动的UI组件库,相比其它优势大,组件全,设计趋势紧跟未来。具有主题生成,主题实时切换,暗黑实时切换,lottie动画,图表等新颖功能,tmui TMUI

18 lines (15 loc) 521 B
class FillStyleLinearGradient { constructor(x0, y0, x1, y1) { this._start_pos = { _x: x0, _y: y0 }; this._end_pos = { _x: x1, _y: y1 }; this._stop_count = 0; this._stops = [0, 0, 0, 0, 0]; } addColorStop = function (pos, color) { if (this._stop_count < 5 && 0.0 <= pos && pos <= 1.0) { this._stops[this._stop_count] = { _pos: pos, _color: color }; this._stop_count++; } } } export default FillStyleLinearGradient;