91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

css徑向漸變的使用方法

發布時間:2020-12-23 09:43:28 來源:億速云 閱讀:272 作者:小新 欄目:web開發

小編給大家分享一下css徑向漸變的使用方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

css徑向漸變的使用方法:首先創建一個HTML示例文件;然后創建一個div塊;最后通過添加css樣式為“background:radial-gradient()”來實現徑向漸變效果即可。

徑向漸變(radial gradients):從起點到終點顏色從內而外沿進行圓形漸變。

語法

background:radial-gradient(center,shape size,start-color,……,last-color);

徑向漸變-設置形狀

語法:

background:radial-gradient(shape,start-color,……,last-color);

說明:

shape值可以取兩個

circle——圓形

ellipse——橢圓(默認)

徑向漸變-尺寸大小關鍵字

尺寸大小關鍵字是確定結束顏色的位置,默認值為farthest-corner。

語法

background:radial-gradient(size,start-color,……,last-color);

size取值為以下四個關鍵字:

closest-side:最近邊

farthest-side:最遠邊

closest-corner:最近角

farthest-corner:最遠角

實例:

div {
     width: 300px;
     height: 200px;
     /* Safari 5.1 - 6.0 */
     background: -webkit-radial-gradient(30% 70%, farthest-side, blue, green, yellow, black);
     /* Opera 11.6 - 12.0 */
     background: -o-radial-gradient(30% 70%, farthest-side, blue, green, yellow, black);
     /* Firefox 3.6 - 15 */
     background: -moz-radial-gradient(30% 70%, farthest-side, blue, green, yellow, black);
     /* 標準的語法 */
     background: radial-gradient(30% 70%, farthest-side, blue, green, yellow, black);
   }

徑向漸變-圓心位置

語法:

background:radial-gradient(level-percent vertical-percent,start-color,……,last-color);

注意:圓心位置的標準語法目前主流瀏覽器支持性較差,需要注意加瀏覽器前綴。

一般使用時的方式:

-webkit-background:radial-gradient(level-percent vertical-percent,start-color,……,last-color);
-o-background:radial-gradient(level-percent vertical-percent,start-color,……,last-color);
-moz-background:radial-gradient(level-percent vertical-percent,start-color,……,last-color);
background:radial-gradient(level-percent vertical-percent,start-color,……,last-color);

思考:1、漸變中顏色后面百分比值有何含義?

3-12編程練習

小伙伴們,學習了CSS3徑向漸變,根據效果圖,補充代碼,實現:

(1)以中心(60% 40%)為起點,設置圓心到最近邊、最圓邊、最近角、最圓角的四種徑向漸變效果。

(2)徑向漸變的形狀是圓形

(3)顏色由里到外分別是紅、黃、綠、藍

效果圖如下

css徑向漸變的使用方法

任務

給4個元素分別設置背景顏色徑向漸變

(1)分別設置徑向漸變大小為最近邊、最遠邊、最近角、最遠角

(2)漸變的圓心為60%和40%

(3)漸變的形狀為圓形

(4)漸變的顏色由里到外依次為紅、黃、綠、藍。

參考代碼:

<!DOCTYPE html>
<html>
 
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
 
    <title>徑向漸變</title>
    <style>
        div {
            width: 200px;
            height: 300px;
            float: left;
            margin: 100px 0 0 100px;
        }
 
        /* 補充代碼,分別寫出4個元素的背景漸變效果 */
 
        .div1 {
            background: -webkit-radial-gradient(60% 40%,closest-side circle, red,yellow,green,blue);
            /* Opera 11.6 - 12.0 */
            background: -o-radial-gradient(60% 40%,closest-side circle, red,yellow,green,blue);
            /* Firefox 3.6 - 15 */
            background: -moz-radial-gradient(60% 40%,closest-side circle, red,yellow,green,blue);
            /* 標準的語法 */
            background: radial-gradient(60% 40%,closest-side circle, red,yellow,green,blue);
        }
        .div2 {
            background: -webkit-radial-gradient(60% 40%,farthest-side circle, red,yellow,green,blue);
            /* Opera 11.6 - 12.0 */
            background: -o-radial-gradient(60% 40%,farthest-side circle, red,yellow,green,blue);
            /* Firefox 3.6 - 15 */
            background: -moz-radial-gradient(60% 40%,farthest-side circle, red,yellow,green,blue);
            /* 標準的語法 */
            background: radial-gradient(60% 40%,farthest-side circle, red,yellow,green,blue);
        }
        .div3 {
            background: -webkit-radial-gradient(60% 40%,closest-corner circle, red,yellow,green,blue);
            /* Opera 11.6 - 12.0 */
            background: -o-radial-gradient(60% 40%,closest-corner circle, red,yellow,green,blue);
            /* Firefox 3.6 - 15 */
            background: -moz-radial-gradient(60% 40%,closest-corner circle, red,yellow,green,blue);
            /* 標準的語法 */
            background: radial-gradient(60% 40%,closest-corner circle, red,yellow,green,blue);
        }
        .div4 {
            background: -webkit-radial-gradient(60% 40%,farthest-corner circle, red,yellow,green,blue);
            /* Opera 11.6 - 12.0 */
            background: -o-radial-gradient(60% 40%,farthest-corner circle, red,yellow,green,blue);
            /* Firefox 3.6 - 15 */
            background: -moz-radial-gradient(60% 40%,farthest-corner circle, red,yellow,green,blue);
            /* 標準的語法 */
            background: radial-gradient(60% 40%,farthest-corner circle, red,yellow,green,blue);
        }
    </style>
</head>
 
<body>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
</body>
 
</html>

徑向漸漸-重復漸變

background:repeating-radial-gradient(color1 length|percent,color2 length|percent,……);

3-14編程練習

小伙伴們,我們學習了CSS3徑向漸變中的重復漸變,接下來,根據效果圖寫出代碼,實現以元素中心為原點進行多個彩虹球的重復徑向漸變。

(1)要求彩虹的7個顏色,取值范圍從0%開始,一次加5%,比如紅色是0%,橙色是5%,黃色是10%,依次類推

(2)提示:彩虹球的顏色,用英語單詞表示即可

(3)效果圖如下:

css徑向漸變的使用方法

參考代碼:

<!DOCTYPE html>
<html>
 
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
 
    <title>徑向漸變</title>
    <style>
        div {
            width: 400px;
            height: 400px;
            /* 補充代碼 */
            background: -webkit-repeating-radial-gradient(closest-side circle, red 0%,orange 5%,yellow 10%,green 15%,blue 20%,indigo 25%,purple 30%);
            /* Opera 11.6 - 12.0 */
            background: -o-repeating-radial-gradient( closest-side circle,red 0%,orange 5%,yellow 10%,green 15%,blue 20%,indigo 25%,purple 30%);
            /* Firefox 3.6 - 15 */
            background: -moz-repeating-radial-gradient(closest-side circle,red 0%,orange 5%,yellow 10%,green 15%,blue 20%,indigo 25%,purple 30%);
            /* 標準的語法 */
            background: repeating-radial-gradient( closest-side circle, red 0%,orange 5%,yellow 10%,green 15%,blue 20%,indigo 25%,purple 30%);
        }
    </style>
</head>
 
<body>
    <div></div>
 
</body>
 
</html>

以上是“css徑向漸變的使用方法”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

css
AI

赣榆县| 视频| 买车| 苏州市| 临湘市| 驻马店市| 平和县| 五峰| 乌兰县| 新昌县| 松江区| 裕民县| 邛崃市| 清苑县| 喀什市| 建湖县| 临武县| 沙湾县| 定襄县| 易门县| 彩票| 成武县| 宝鸡市| 镇巴县| 灵台县| 嘉峪关市| 巫山县| 孟州市| 阳泉市| 昆山市| 栾城县| 楚雄市| 唐河县| 博客| 津南区| 新和县| 孟津县| 鲜城| 大田县| 堆龙德庆县| 库伦旗|