大致樣式:每個按鈕由上下兩部分組成,上半部分實現(xiàn)鼠標滑過-放大并且旋轉奖年,下半部分市縣鼠標滑過-背景顏色變化细诸,帶有四個線條動畫,并且顯示提示文字
transform 轉變
該屬性對元素進行2D或3D轉換陋守,允許我們對元素進行旋轉震贵,縮放利赋,移動或者傾斜。
舉例:
transform: rotate(360deg) scale(1.2);
transform
是綜合屬性猩系, 后面的rotate
和scale
是附帶屬性媚送,這些附帶屬性之間用空格隔開!
兼容問題:
為了兼容這些瀏覽器寇甸,要加上這些內核:
transform: rotate(360deg) scale(1.2);
-ms-transform: rotate(360deg) scale(1.2);
-moz-transform: rotate(360deg) scale(1.2);
-webkit-transform: rotate(360deg) scale(1.2);
-o-transform: rotate(360deg) scale(1.2);
transition 過渡
注意L临恕! transition寫在動畫之前拿霉,也就是原始狀態(tài)CSS的類R髦取!動畫之后的狀態(tài)類至寫改變之后的代碼U捞浴涵防!
該屬性是簡寫屬性,有四種附屬屬性沪铭,是用來過渡的壮池。--> 有了這個屬性,像transform之類的動畫才會有過程(本例子中伦意,沒有這個transition屬性火窒,鼠標滑過按鈕時,只會看到突兀的放大效果驮肉,而去看不到轉動的效果熏矿,因為沒有過程,所以轉動的效果相當于沒有@攵邸)
transition-property
, transition-duration
, transition-timing-function
, transition-delay
transition-property:
取值可能為all
/空
票编,特定的屬性比如width
transition-duration:
取值可能為秒XXXs
或者毫秒XXXms
transition-timing-function:
取值可能為(1)
linear
:規(guī)定以相同速度開始至結束的過渡效果,等于 cubic-bezier(0,0,1,1)(2)
ease
:規(guī)定慢速開始卵渴,然后變快慧域,然后慢速結束的過渡效果,等于cubic-bezier(0.25,0.1,0.25,1)(3)
ease-in
:規(guī)定以慢速開始的過渡效果浪读,等于 cubic-bezier(0.42,0,1,1)(4)
ease-out
:規(guī)定以慢速結束的過渡效果昔榴,等于 cubic-bezier(0,0,0.58,1)(5)
ease-in-out
:規(guī)定以慢速開始和結束的過渡效果,等于 cubic-bezier(0.42,0,0.58,1)(6)
cubic-bezier(*n*,*n*,*n*,*n*)
:在 cubic-bezier 函數(shù)中定義自己的值碘橘』ザ可能的值是 0 至 1 之間的數(shù)值。兼容問題:
box-sizing
CSS3之前的盒子模型不夠靈活痘拆,CCS3推出的新屬性box-sizing
仰禽,取值范圍為content-box
,border-box
,inherit
兼容問題:
舉例:
元素總寬度為180px
box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
width: 180px;
border-radius
border-radius是一個簡寫屬性吐葵,用于設置四個border-XXX-radius
屬性(XXX
=left
, top
)
兼容性:
以下瀏覽器皆支持該屬性规揪!