css transform

関連タイピング
-
htmlやcssのタイピングです。
プレイ回数6436英語長文120秒 -
chatGPTに作らせた部分一致検索サイトです。
プレイ回数790長文590打 -
emmetのための備考欄
プレイ回数944短文英字201打 -
プログラミングでよく使う記号や構文を練習したい人向け
プレイ回数1万長文956打 -
さぁ、CSSを入力しよう!
プレイ回数990英字140打 -
プレイ回数101長文英字90秒
-
vue Lifecycle Hooks
プレイ回数189英語157打 -
記号の練習
プレイ回数529英語60秒
問題文
(transform-origin:left top;)
基点transform-origin:50%50% 0;初期値
(transform:translate(10px,10px))
2D 移動 translateX()translateY()
(rotate(10deg))
2D 回転
(scale(1,1.1))
2D 伸縮 scaleX() scaleY()
(skew(10deg);)
回転 skewX()skewY() 2番目を省くとskewX()と同じ
(transform:matrix(1,0,0,1,0,0);)
1,4縮尺2,3傾斜5,6移動1,3,5水平2,4,6垂直
(transform-style:preserve-3d;)
3Dpreserve-3d 親要素に指定 flat
(perspective:800px;)
親要素に指定
(perspective-origin:right bottom;)
親要素perspective-origin:
(transform:perspective(200px))
子要素
(translate3d(20px,20px,20px))
3D transformZ() 移動
(rotate3d(1,2,3,60deg))
3DrotateX()rotateY()rotateZ()回転turn
(scale3d(1,2,3);)
3d scale3d scaleZ()
(backface-visibility:hidden;)
rotateX()rotateY()rotateZ()と併用
(transition:transform 2s linear 0.5s;)
transition
(transition-property:transition-duration:)
transition
(transition-timing-function:transition-delay:)
transition
(animation:name 2s ease 1s 3 alternate both paused;)
animation
(animation-name:animation-duration:)
animation
(animation-timing-function:ease-in;)
liniear ease-in-out steps(4,end)
(animation-delay:animation-iteration-count:infinite;)
animation
(animation-direction:normal;)
向きnormal reverse alternate-reverse
(animation-fill-mode:forwards;)
none forwards backwards
(animation-play-state:running;)
paused;