animation-name:動畫的名字
animation-duration:動畫完成乙個週期所花費的時間(秒/毫秒)
animation-timing-function:動畫的速度曲線
(linear ease ease-in ease-out ease-in-out 貝塞爾曲線)
animation-delay:動畫何時開始
animation-fill-mode:動畫時間之外的狀態 (和延遲連用 )
-- forwards(保留動畫結束時的狀態)
-- backwards(不會保留動畫結束時的狀態)
-- both(上面兩種狀態都有)
例項:
>
>
charset
="utf-8"
>
>
title
>
type
="text/css"
>
divdiv:hover
/*關鍵幀*/
@keyframes movedhto}
style
>
head
>
>
>
div>
body
>
html
>
@keyframes name
to{}
}@keyframes name
10%{}
20%{}
30%{}
40%{}
50%{}
60%{}
70%{}
100%{}
}
例項:
>
>
charset
="utf-8"
>
>
title
>
type
="text/css"
>
.wrap
.box
@keyframes movedh
25%50%
75%100%
}style
>
head
>
>
class
="wrap"
>
class
="box"
>
div>
div>
body
>
html
>
移動端 第十章 動畫
動畫屬性 animation animation name 動畫的名字 animation duration 動畫完成乙個週期所花費的時間 秒 毫秒 animation timing function 動畫的速度曲線 linear ease ease in ease out ease in out ...
modern c design 第十一章
本章介紹了經常遇到的雙分派的一種泛型解決方案。c 在語法上實現了單分派,即虛函式,通過動態機制選擇相應的函式。雙分派是形如fun object1 a,object2 b 根據a和b的實際型別動態自動分派乙個處理函式。最容易想到的方案,蠻幹法 寫一大堆過載函式.不過這種方法會有很強的依賴性。也提供了一...
第十一章3
第十一章 一 滾動元件 awt中的滾動元件包括scrollbar 滾動條 和滾動面板 scrollpane 兩種。1 滾動條scrollbar 在指定的取值範圍內快速選取某一值的功能。i.構造方法 public scrollbar int orientation,int value,int visi...