1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-23 07:27:39 +00:00
Files
matomo/node_modules/chroma-js/test/html/luminance.html
diosmosis b12946909f run npm update and include node_modules (#16079)
* update npm packages to latest

* fix javascript path location

* update screenshots

* Add node_modules for users that do not have npm insalled but use git to deploy.

* fix release checklist test

* Add old chroma-js + some files missing from node_module.

* remove npm install

* fix .travis.yml

* update expected screenshots

* update submodule

Co-authored-by: sgiehl <stefan@matomo.org>
2020-06-26 02:33:41 -07:00

50 خطوط
1.4 KiB
HTML
Vendored

<!DOCTYPE html>
<html>
<head>
<title>Chroma.js</title>
<script type="text/javascript" src="../../chroma.js"></script>
</head>
<body>
<script type="text/javascript">
function showScale(color, mode, odiv) {
var c = document.createElement('div');
for (var i=0; i <= 1; i += 0.01) {
var col = chroma(color).luminance(i, mode);
var d = document.createElement('div');
d.style.display = 'inline-block';
d.style.width = '10px';
d.style.height = '60px';
d.style.background = col.hex();
c.appendChild(d);
}
odiv.appendChild(c);
}
var scales = [
['red', 'rgb'],
['red', 'lab'],
['yellow', 'lab'],
['black', 'rgb'],
['blue', 'rgb'],
['green', 'rgb'],
['green', 'lab'],
['orange', 'rgb']
];
for (var s in scales) {
s = scales[s];
d = document.createElement('div');
d.style.position = 'relative';
document.body.appendChild(d);
d.innerHTML = "<div style='position:absolute;top:5px;left:10px;opacity:0.9;color:#000;text-shadow:-1px -1px 0px rgba(255,255,255,0.3), 1px 1px 0px rgba(255,255,255,0.3), -1px 1px 0px rgba(255,255,255,0.3), 1px -1px 0px rgba(255,255,255,0.3)'><code>" + s.join(' / ') + "</code></div>";
showScale(s[0], s[1], d);
}
</script>
</body>
</html>