我的编程空间,编程开发者的网络收藏夹
学习永远不晚

CSS3的色彩模式有哪些

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

CSS3的色彩模式有哪些

本篇内容介绍了“CSS3的色彩模式有哪些”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

HSL色彩模式是工业界的一种颜色标准,它通过对色调(H),饱和度(S),亮度(L)三个颜色通道的改变以及他们相互之间的叠加来获得各种颜色。这个标准几乎包括了人类视力可以感知的所有颜色,在屏幕上可以重现16777216种颜色,是目前应用最广的颜色系统之一。

语法:

hsl(<length>,<percentage>,<percentage>)

参数说明:

<length>表示色调(Hue),Hue衍生于色盘,取值可以为任意数值,其中0(或360或-360)表示红色,60表示黄色,120表示绿色,180表示青色,240表示蓝色,300表示洋红,当然可以设置其他数值来确定不同的颜色。

<percentage> 表示饱和度(Saturation),表示该色彩被使用了多少,即颜色的深浅程度和鲜艳程度。取值为0%到100%之间的值,其中0%表示灰度,即没有使用该颜色;100%的饱和度最高,即颜色最鲜艳。

<percentage> 表示亮度(Lightness),取值为0%到100%之间的值,其中0%表示最暗,显示为黑色;50%表示均值,100%最亮,显示为亮色。

实例:网页配色解决方案

XML/HTML Code复制内容到剪贴板

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  

  2. <html xmlns="http://www.w3.org/1999/xhtml">  

  3. <head>  

  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  

  5. <title>HSL Color</title>  

  6. <style type="text/css">  

  7. table {   

  8.     border:solid 1px Orange;   

  9.     background:#eee;   

  10.     padding:6px;   

  11. }   

  12. th {   

  13.     color:Orange;   

  14.     font-size:12px;   

  15.     font-weight:normal;      

  16. }   

  17. td {   

  18.     width:80px;   

  19.     height:30px;      

  20. }   

  21.   

  22. tr:nth-child(4) td:nth-of-type(1) { background:hsl(30,100%,100%);}   

  23. tr:nth-child(4) td:nth-of-type(2) { background:hsl(30,75%,100%);}   

  24. tr:nth-child(4) td:nth-of-type(3) { background:hsl(30,50%,100%);}   

  25. tr:nth-child(4) td:nth-of-type(4) { background:hsl(30,25%,100%);}   

  26. tr:nth-child(4) td:nth-of-type(5) { background:hsl(30,0%,100%);}   

  27.   

  28. tr:nth-child(5) td:nth-of-type(1) { background:hsl(30,100%,88%);}   

  29. tr:nth-child(5) td:nth-of-type(2) { background:hsl(30,75%,88%);}   

  30. tr:nth-child(5) td:nth-of-type(3) { background:hsl(30,50%,88%);}   

  31. tr:nth-child(5) td:nth-of-type(4) { background:hsl(30,25%,88%);}   

  32. tr:nth-child(5) td:nth-of-type(5) { background:hsl(30,0%,88%);}   

  33.   

  34. tr:nth-child(6) td:nth-of-type(1) { background:hsl(30,100%,75%);}   

  35. tr:nth-child(6) td:nth-of-type(2) { background:hsl(30,75%,75%);}   

  36. tr:nth-child(6) td:nth-of-type(3) { background:hsl(30,50%,75%);}   

  37. tr:nth-child(6) td:nth-of-type(4) { background:hsl(30,25%,75%);}   

  38. tr:nth-child(6) td:nth-of-type(5) { background:hsl(30,0%,75%);}   

  39.   

  40. tr:nth-child(7) td:nth-of-type(1) { background:hsl(30,100%,63%);}   

  41. tr:nth-child(7) td:nth-of-type(2) { background:hsl(30,75%,63%);}   

  42. tr:nth-child(7) td:nth-of-type(3) { background:hsl(30,50%,63%);}   

  43. tr:nth-child(7) td:nth-of-type(4) { background:hsl(30,25%,63%);}   

  44. tr:nth-child(7) td:nth-of-type(5) { background:hsl(30,0%,63%);}   

  45.   

  46. tr:nth-child(8) td:nth-of-type(1) { background:hsl(30,100%,50%);}   

  47. tr:nth-child(8) td:nth-of-type(2) { background:hsl(30,75%,50%);}   

  48. tr:nth-child(8) td:nth-of-type(3) { background:hsl(30,50%,50%);}   

  49. tr:nth-child(8) td:nth-of-type(4) { background:hsl(30,25%,50%);}   

  50. tr:nth-child(8) td:nth-of-type(5) { background:hsl(30,0%,50%);}   

  51.   

  52. tr:nth-child(9) td:nth-of-type(1) { background:hsl(30,100%,38%);}   

  53. tr:nth-child(9) td:nth-of-type(2) { background:hsl(30,75%,38%);}   

  54. tr:nth-child(9) td:nth-of-type(3) { background:hsl(30,50%,38%);}   

  55. tr:nth-child(9) td:nth-of-type(4) { background:hsl(30,25%,38%);}   

  56. tr:nth-child(9) td:nth-of-type(5) { background:hsl(30,0%,38%);}   

  57.   

  58. tr:nth-child(10) td:nth-of-type(1) { background:hsl(30,100%,25%);}   

  59. tr:nth-child(10) td:nth-of-type(2) { background:hsl(30,75%,25%);}   

  60. tr:nth-child(10) td:nth-of-type(3) { background:hsl(30,50%,25%);}   

  61. tr:nth-child(10) td:nth-of-type(4) { background:hsl(30,25%,25%);}   

  62. tr:nth-child(10) td:nth-of-type(5) { background:hsl(30,0%,25%);}   

  63.   

  64. tr:nth-child(11) td:nth-of-type(1) { background:hsl(30,100%,13%);}   

  65. tr:nth-child(11) td:nth-of-type(2) { background:hsl(30,75%,13%);}   

  66. tr:nth-child(11) td:nth-of-type(3) { background:hsl(30,50%,13%);}   

  67. tr:nth-child(11) td:nth-of-type(4) { background:hsl(30,25%,13%);}   

  68. tr:nth-child(11) td:nth-of-type(5) { background:hsl(30,0%,13%);}   

  69.   

  70. tr:nth-child(12) td:nth-of-type(1) { background:hsl(30,100%,0%);}   

  71. tr:nth-child(12) td:nth-of-type(2) { background:hsl(30,75%,0%);}   

  72. tr:nth-child(12) td:nth-of-type(3) { background:hsl(30,50%,0%);}   

  73. tr:nth-child(12) td:nth-of-type(4) { background:hsl(30,25%,0%);}   

  74. tr:nth-child(12) td:nth-of-type(5) { background:hsl(30,0%,0%);}   

  75.   

  76. </style>  

  77. </head>  

  78.   

  79. <body>  

  80. <table class="hslexample">  

  81.     <tbody>  

  82.         <tr>  

  83.             <th> </th>  

  84.             <th colspan="5">色相:H=30 Red-Yellow (=Orange)  </th>  

  85.         </tr>  

  86.         <tr>  

  87.             <th> </th>  

  88.             <th colspan="5">饱和度 (&rarr;)</th>  

  89.         </tr>  

  90.         <tr>  

  91.             <th>亮度 (&darr;)</th>  

  92.             <th>100% </th>  

  93.             <th>75% </th>  

  94.             <th>50% </th>  

  95.             <th>25% </th>  

  96.             <th>0% </th>  

  97.         </tr>  

  98.         <tr>  

  99.             <th>100 </th>  

  100.             <td> </td>  

  101.             <td> </td>  

  102.             <td> </td>  

  103.             <td> </td>  

  104.             <td> </td>  

  105.         </tr>  

  106.         <tr>  

  107.             <th>88 </th>  

  108.             <td> </td>  

  109.             <td> </td>  

  110.             <td> </td>  

  111.             <td> </td>  

  112.             <td> </td>  

  113.         </tr>  

  114.         <tr>  

  115.             <th>75 </th>  

  116.             <td> </td>  

  117.             <td> </td>  

  118.             <td> </td>  

  119.             <td> </td>  

  120.             <td> </td>  

  121.         </tr>  

  122.         <tr>  

  123.             <th>63 </th>  

  124.             <td> </td>  

  125.             <td> </td>  

  126.             <td> </td>  

  127.             <td> </td>  

  128.             <td> </td>  

  129.         </tr>  

  130.         <tr>  

  131.             <th>50 </th>  

  132.             <td> </td>  

  133.             <td> </td>  

  134.             <td> </td>  

  135.             <td> </td>  

  136.             <td> </td>  

  137.         </tr>  

  138.         <tr>  

  139.             <th>38 </th>  

  140.             <td> </td>  

  141.             <td> </td>  

  142.             <td> </td>  

  143.             <td> </td>  

  144.             <td> </td>  

  145.         </tr>  

  146.         <tr>  

  147.             <th>25 </th>  

  148.             <td> </td>  

  149.             <td> </td>  

  150.             <td> </td>  

  151.             <td> </td>  

  152.             <td> </td>  

  153.         </tr>  

  154.         <tr>  

  155.             <th>13 </th>  

  156.             <td> </td>  

  157.             <td> </td>  

  158.             <td> </td>  

  159.             <td> </td>  

  160.             <td> </td>  

  161.         </tr>  

  162.         <tr>  

  163.             <th>0 </th>  

  164.             <td> </td>  

  165.             <td> </td>  

  166.             <td> </td>  

  167.             <td> </td>  

  168.             <td> </td>  

  169.         </tr>  

  170.     </tbody>  

  171. </table>  

  172. </body>  

  173. </html>  

演示效果图:

CSS3的色彩模式有哪些

常见网页基本配色方案:

橙色系:朝气活泼,豁然开朗

CSS3的色彩模式有哪些

黄色系:明亮喜庆,甜蜜幸福

CSS3的色彩模式有哪些

黄绿色系:自然清新,年轻且富有希望

CSS3的色彩模式有哪些

绿色系:新鲜自然,明朗宁静

CSS3的色彩模式有哪些

青绿色系:健康清新,充满信心和活力

CSS3的色彩模式有哪些

青色系:坚定,古朴庄重

CSS3的色彩模式有哪些

青蓝色系:爽朗开阔,清凉高远

CSS3的色彩模式有哪些

蓝色系:和平,淡雅,洁净

CSS3的色彩模式有哪些

蓝紫色系:成熟,冷静,高贵

CSS3的色彩模式有哪些

紫色系:神秘高贵,高雅脱俗

CSS3的色彩模式有哪些

紫红色系:浪漫柔和,华丽高贵

CSS3的色彩模式有哪些

红色系:吉祥幸福,古典

CSS3的色彩模式有哪些

“CSS3的色彩模式有哪些”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

CSS3的色彩模式有哪些

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

网页色彩对比与调和技巧有哪些

这篇文章将为大家详细讲解有关网页色彩对比与调和技巧有哪些,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。色彩对比与调和在对比状态下,色彩相互作用与单一色彩所带给人的感觉不一样,这种现象是由视觉残影引起的。当
2023-06-08

web开发中网页色彩性质的分类有哪些

这篇文章给大家分享的是有关web开发中网页色彩性质的分类有哪些的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。色彩性质的分类任何颜色都可以使用三原色——红、绿、蓝组合而成,三原色中只有红色是
2023-06-08

CSS3中常用的样式有哪些

这篇文章主要为大家展示了CSS3中常用的样式有哪些,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带大家一起来研究并学习一下“CSS3中常用的样式有哪些”这篇文章吧。1、字体大小的单位 px (像素):这是一个绝对单位;em
2023-06-08

sql_mode的模式有哪些

这篇文章主要介绍“sql_mode的模式有哪些”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“sql_mode的模式有哪些”文章能帮助大家解决问题。sql_mode的各模
2023-03-20

css3中新增加的颜色模式是什么

这篇文章主要介绍css3中新增加的颜色模式是什么,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!css新增了3种颜色模式:1、RGBA模式,是在RGB模式上新增了Alpha透明度,例“rgba(255,0,0,0.5)
2023-06-14

WCF模式有哪些

本篇内容介绍了“WCF模式有哪些”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!单调和单例模式体现了两种极端的远程对象激活方式,而CAO则是一
2023-06-17

RabbitMQ有哪些模式

本篇内容介绍了“RabbitMQ有哪些模式”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!RabbitMQ是AMQP的一个典型实现,它消息发布
2023-07-02

舞蹈教学小程序开发有哪些特色模式

这篇文章给大家分享的是有关舞蹈教学小程序开发有哪些特色模式的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。舞蹈教学小程序开发的特色模式:1.短视频模式。在小程序的主页上,用户不仅可以展示自己的舞蹈视频,还可以不断扫
2023-06-27

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录