css的一些功能

來源:互聯網
上載者:User

標籤:視窗   ado   for   bsp   nbsp   sky   ini   表示   方法   

css的一些功能代碼:
背景顏色的設定:由三種顏色設定方法:1.英文單詞 2.rgb設定3.#_等
background-color: #CDFFC5;
分別表示不同的屬性:x y 模糊 外延(可選) 顏色
box-shadow: 2px 2px 2px 10px #ccc;

漸層色,顏色會逐漸發生變化,呈線性:
background: linear-gradient(90deg,red,yellow);

對div等標籤變形:變形方式是縮放 當scale的值為1時不變 小於1縮小 大於1放大
transform: scale(1,2);
旋轉:當移動滑鼠時會使視窗選轉
transform: rotate(45deg);
扭轉:使視窗的角度改變
transform: skew(20deg);

漸層:給定的內容逐漸發生改變
transition: all linear 2s;

動畫:使靜態變成動態 格式依次是動畫名稱 運動方式 已耗用時間 次數
animation: F43_run linear 2s infinite;
動畫名為串連的代碼,可以實現特定的功能,方式有以下兩種:
@keyframes F43_run {
from{
/*background-color: #CDFFC5;*/
}
to{
/*background-color: yellow;*/

 

0%{
background-color: red;
}
20%{
background-color: orange;
}
40%{
background-color: yellow;
}
60%{
background-color: green;
}
80%{
background-color: deepskyblue;
}
100%{
background-color: purple;
}
}

css的一些功能

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.