ntc.js 查看相近相似色的插件


ntc.js 查看相近相似色的插件

第一步引入bfwone

第二步执行插件

示例如下

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>BFW NEW PAGE</title>
    <script id="bfwone" data="dep=jquery.17&err=0" type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/bfwone.js"></script>
    <script type="text/javascript">
        bready(function() {
            use(["ntc"], function() {
                var ColorCode = "#008559";

                // 2. Rate the color using NTC
                var ntcMatch = ntc.name(ColorCode);

                // 3. Handle the result. The library returns an array with the identified color.

                // 3.A RGB value of closest match e.g #01826B
                console.log(ntcMatch[0]);
                // Text string: Color name e.g "Deep Sea"
                console.log(ntcMatch[1]);
                // True if exact color match, a Boolean
                console.log(ntcMatch[2]);
            });
        });
    </script>
</head>
<body>
    <div>查看相近色,看console</div>
</body>
</html>


立即下载ntc.js查看所有js插件

网友评论0

程序员在线工具箱