您好,登錄后才能下訂單哦!
本篇文章為大家展示了CSS3RGBA色彩模式怎么用,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
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>
演示效果:
上述內容就是CSS3RGBA色彩模式怎么用,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。