CSSを使用してアニメーションを再生する回数を設定します
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; position: relative; background-color: yellow; animation-name: myanim; animation-duration: 2s; animation-direction: alternate-reverse; animation-iteration-count: 3; } @keyframes myanim { from {left: 100px;} to {left: 200px;} } #demo1 {animation-timing-function: ease;} #demo2 {animation-timing-function: ease-in;} </style> </head> <body> <div id = "demo1">ease effect</div> <div id = "demo2">ease-in effect</div> </body> </html>
-
CSSでグリッドテンプレートプロパティを設定します
グリッドテンプレートプロパティを設定するには、行と列の数を指定する必要があります。それで、グリッドレイアウト内の領域も設定します。グリッドテンプレートの構文は同じ-を反映しています grid-template: none|grid-template-rows / grid-template-columns|grid-template-areas|initial|inherit; 例 グリッドテンプレートの例を見てみましょう- <!DOCTYPE html> <html> <head> <style> .grid-contai
-
CSSのpositionプロパティを使用して要素を整列する
CSSポジショニングスキーマメソッド(固定、相対、絶対、静的)とプロパティ(左、右、上、下)を使用して要素を整列できます。 例 ポジショニングスキーマを使用して要素を整列させる例を見てみましょう- <!DOCTYPE html> <html> <head> <title>Alignment using CSS Position</title> <style> .screen { padding: 10px; width: 70%; margin