CSS3 RGBA色彩模式使用实例讲解
程序员文章站
2022-06-20 13:57:55
这篇文章主要以设计带有阴影边框的表单为例,为大家介绍了CSS3 RGBA色彩模式使用方法,感兴趣的小伙伴们可以参考一下... 16-04-26...
rgba色彩模式是rgb色彩模式的扩展,在红,蓝,绿三原色的基础上增加了不透明度参数。语法如下:
rgba(r,g,b,<opaciy>)
其中r,g,b表示红色,蓝色,绿色三种原色所占的比重。其值可以使整数或者百分数,正整数值的取值范围为0~255,百分数值的取值范围为0.0%~100.0%,超出范围的数值将被截止其最接近的取值极限。注意,并非所有的浏览器都支持使用百分数值。第四个参数<opacity>表示不透明度,取值在0到1之间。
实例:设计带有阴影边框的表单
xml/html code复制内容到剪贴板
- <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <title>rgba color</title>
- <style type="text/css">
- input, textarea {/*统一输入域样式*/
- padding: 4px;
- border: solid 1px #e5e5e5;
- outline: 0;
- font: normal 13px/100% verdana, tahoma, sans-serif;
- width: 200px;
- background: #ffffff;
- box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;/*设计边框阴影效果*/
- -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;/*兼容mozilla类型的浏览器,如ff*/
- -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;/*兼容webkit引擎,如chrome和safari*/
- }
- textarea {/*定义文本区域样式*/
- width: 400px;
- max-width: 400px;
- height: 150px;
- line-height: 150%;
- background:url(images/form-shadow.png) no-repeat bottom right;
- }
- input:hover, textarea:hover, input:focus, textarea:focus { border-color: #c9c9c9; }/*设计鼠标的动态效果*/
- label {/*定义标签样式*/
- margin-left: 10px;
- color: #999999;
- display:block;/*以块状显示,实现分行显示*/
- }
- .submit input {/*设计提交按钮的样式*/
- width:auto;
- padding: 9px 15px;
- background: #617798;
- border: 0;
- font-size: 14px;
- color: #ffffff;
- }
- </style>
- </head>
- <body>
- <form>
- <p class="name">
- <label for="name">姓名</label>
- <input type="text" name="name" id="name" />
- </p>
- <p class="email">
- <label for="email">邮箱</label>
- <input type="text" name="email" id="email" />
- </p>
- <p class="web">
- <label for="web">个人网址</label>
- <input type="text" name="web" id="web" />
- </p>
- <p class="text">
- <label for="text">留言</label>
- <textarea name="text" id="text"></textarea>
- </p>
- <p class="submit">
- <input type="submit" value="提交" />
- </p>
- </form>
- </body>
- </html>
演示效果:
以上就是本文的全部内容,希望对大家的学习有所帮助。