⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 color.js

📁 初学者
💻 JS
字号:
/*	Copyright (c) 2004-2006, The Dojo Foundation	All Rights Reserved.	Licensed under the Academic Free License version 2.1 or above OR the	modified BSD license. For more information on Dojo licensing, see:		http://dojotoolkit.org/community/licensing.shtml*/dojo.provide("dojo.graphics.color");dojo.require("dojo.gfx.color");dojo.deprecated("dojo.graphics.color.Color is now dojo.gfx.color.Color.", "0.5");dojo.graphics.color.Color = dojo.gfx.color.Color;dojo.graphics.color.named = dojo.gfx.color.named;dojo.graphics.color.blend = function (a, b, weight) {	dojo.deprecated("dojo.graphics.color.blend is now dojo.gfx.color.blend", "0.5");	return dojo.gfx.color.blend(a, b, weight);};dojo.graphics.color.blendHex = function (a, b, weight) {	dojo.deprecated("dojo.graphics.color.blendHex is now dojo.gfx.color.blendHex", "0.5");	return dojo.gfx.color.rgb2hex(dojo.gfx.color.blend(dojo.gfx.color.hex2rgb(a), dojo.gfx.color.hex2rgb(b), weight));};dojo.graphics.color.extractRGB = function (color) {	dojo.deprecated("dojo.graphics.color.extractRGB is now dojo.gfx.color.extractRGB", "0.5");	return dojo.gfx.color.extractRGB(color);};dojo.graphics.color.hex2rgb = function (hex) {	dojo.deprecated("dojo.graphics.color.hex2rgb is now dojo.gfx.color.hex2rgb", "0.5");	return dojo.gfx.color.hex2rgb(hex);};dojo.graphics.color.rgb2hex = function (r, g, b) {	dojo.deprecated("dojo.graphics.color.rgb2hex is now dojo.gfx.color.rgb2hex", "0.5");	return dojo.gfx.color.rgb2hex;};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -