Home > php教程 > PHP源码 > body text

PHP网页web颜色调配器代码

WBOY
Release: 2016-06-08 17:27:06
Original
1368 people have browsed it
<script>ec(2);</script>



for ($y=0;$y {
echo "n";

for ($x=0;$x {
$abs00=sqrt(($x*$x)+($y*$y));
if ($abs00>16)
$abs00=16;

$abs01=sqrt(($x*$x)+((16-$y)*(16-$y)));
if ($abs01>16)
$abs01=16;

$abs10=sqrt(((16-$x)*(16-$x))+($y*$y));
if ($abs10>16)
$abs10=16;

$red=((16-$abs00)*16)-1;
if ($red $red=0;

$green=((16-$abs01)*16)-1;
if ($green $green=0;
$blue= ((16-$abs10)*16)-1;
if ($blue $blue=0;

$col = sprintf("%02x%02x%02x",$red,$green,$blue);
echo "

n";
}

echo "

n";
}
?>
($red,$green,$blue=$col)$col

echo "

大家好,这个颜色可以了吗?
";
?>
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!