hsl.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.provide("dojo.graphics.color.hsl");
  9. dojo.require("dojo.gfx.color.hsl");
  10. dojo.deprecated("dojo.graphics.color.hsl has been replaced with dojo.gfx.color.hsl", "0.5");
  11. dojo.graphics.color.rgb2hsl = function (r, g, b) {
  12. dojo.deprecated("dojo.graphics.color.rgb2hsl has been replaced with dojo.gfx.color.rgb2hsl", "0.5");
  13. return dojo.gfx.color.rgb2hsl(r, g, b);
  14. };
  15. dojo.graphics.color.hsl2rgb = function (h, s, l) {
  16. dojo.deprecated("dojo.graphics.color.hsl2rgb has been replaced with dojo.gfx.color.hsl2rgb", "0.5");
  17. return dojo.gfx.color.hsl2rgb(h, s, l);
  18. };
  19. dojo.graphics.color.hsl2hex = function (h, s, l) {
  20. dojo.deprecated("dojo.graphics.color.hsl2hex has been replaced with dojo.gfx.color.hsl2hex", "0.5");
  21. return dojo.gfx.color.hsl2hex(h, s, l);
  22. };
  23. dojo.graphics.color.hex2hsl = function (hex) {
  24. dojo.deprecated("dojo.graphics.color.hex2hsl has been replaced with dojo.gfx.color.hex2hsl", "0.5");
  25. return dojo.gfx.color.hex2hsl(hex);
  26. };