版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
336 B

  1. var Gradient = (function () {
  2. function Gradient(colorStops) {
  3. this.colorStops = colorStops || [];
  4. }
  5. Gradient.prototype.addColorStop = function (offset, color) {
  6. this.colorStops.push({
  7. offset: offset,
  8. color: color
  9. });
  10. };
  11. return Gradient;
  12. }());
  13. export default Gradient;