当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Fabric.js fromHex()用法及代码示例


fromHex()方法用于为十六进制格式的指定颜色返回新的颜色对象。

用法:

fromHex(color)

参数:此方法接受如上所述和以下描述的参数:

  • color:此参数以HEX格式保存指定的字符串颜色值。

返回值:对于十六进制格式的指定颜色,此方法以“RGBA(Red-Green-Blue-Alpha)”的格式返回新的颜色对象。

范例1:



Javascript

<!DOCTYPE html> 
<html> 
  
<head> 
  <!-- Adding the FabricJS library --> 
  <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js"> 
  </script> 
</head> 
  
<body> 
  <script type="text/javascript"> 
  
   // Calling the fromHex() function over 
   // the specified color value in HEX format 
   console.log(fabric.Color.fromHex("FF0000"));  
  </script> 
</body> 
  
</html>

输出:

{"_source":[255,0,0,1]}

范例2:

Javascript

<!DOCTYPE html> 
<html> 
  
<head> 
  <!-- Adding the FabricJS library --> 
  <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js"> 
  </script> 
</head> 
  
<body> 
  <script type="text/javascript"> 
  
   // Initializing some color values in HEX format 
   var Green = "00FF00"; 
   var Blue = "0000FF"; 
   var Yellow = "FFFF00"; 
  
   // Calling the fromHex() function over 
   // the above specified color values 
   console.log(fabric.Color.fromHex(Green));  
   console.log(fabric.Color.fromHex(Blue));  
   console.log(fabric.Color.fromHex(Yellow));  
  </script> 
</body> 
  
</html>

输出:

{"_source":[0,255,0,1]}
{"_source":[0,0,255,1]}
{"_source":[255,255,0,1]}

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Fabric.js fromHex() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。