js根据一个色值获取向上(白色)渐变色的色值

 var parseColor = function (hexStr) {
      return hexStr.length === 4 ? hexStr.substr(1).split('').map(function (s) { return 0x11 * parseInt(s, 16); }) : [hexStr.substr(1, 2), hexStr.substr(3, 2), hexStr.substr(5, 2)].map(function (s) { return parseInt(s, 16); })
  };
  var pad = function (s) {
      return (s.length === 1) ? '0' + s : s;
  };
  /*
      start 开始颜色
      end 结束颜色
      steps 颜色分解 次数
      gamma 暂时理解为透明一点(伽马)
  */
  var gradientColors = function (start, end, steps, gamma) {
      var i, j, ms, me, output = [], so = [];
      gamma = gamma || 1;
      var normalize = function (channel) {
          return Math.pow(channel / 255, gamma);
      };
      start = parseColor(start).map(normalize);
      end = parseColor(end).map(normalize);

      for (i = 0; i < steps; i++) {
          ms = i / (steps - 1);
          me = 1 - ms;
          for (j = 0; j < 3; j++) {
          so[j] = pad(Math.round(Math.pow(start[j] * me + end[j] * ms, 1 / gamma) * 255).toString(16));
          }
          output.push('#' + so.join(''));
      }
      return output[50];
  };

  调用:

gradientColors("#346CEE", '#ffffff', 100)

  

 
posted @ 2024-01-12 11:54  庞某人  阅读(50)  评论(0编辑  收藏  举报