ホームページ > 記事 > ウェブフロントエンド > CSS3 学習スタイル records_html/css_WEB-ITnose
border-radius: 値が大きいほど、角が丸くなります。 >
div{ width:100px; height:100px; background-color:red; border-radius:10px; border-top-left-radius:20px;}border-top-left-radius:2em;
2. シャドウ box-shadow
div{ width:100px; height:100px; background-color:yellow; box-shadow: 10px 10px 5px #d8d8d8;}
h-shadow: 水平方向に右へシフト量;
v-shadow: 垂直下方向のオフセット;
blur: シャドウのサイズ;
inset: 内側のシャドウに変更します。
3. ボーダー画像 border-image
border-image-source border で使用される画像へのパス。
border-image-slice 画像の境界線は内側にオフセットされます。
padding-box 背景画像はパディング ボックスを基準に配置されます。
background-size:20px 20px;border-box 背景画像はボーダーボックスを基準に配置されます。
content-box 背景画像はコンテンツ ボックスを基準にして配置されます。
content-box 背景画像はコンテンツ ボックスを基準にして配置されます。
トランジション: 1 つの属性に 4 つのトランジション属性を設定するために使用される短縮属性。
background-image:url(1.gif),url(2.gif);transition-property: トランジションを適用する CSS プロパティの名前を指定します。
ease-in は、低速で開始するトランジション エフェクトを指定します (cubic-bezier(0.42,0,1,1) に等しい)。
<!DOCTYPE html><html><head><style> div{ width:200px; height:200px; background-color:#d8d8d8;}div:hover{ width:300px; transition: width 2s;}</style></head><body> <div></div></body></html>
上記は移動しながら位置を変えたり、回転したりするアニメーションです。
div:hover{ transform: rotateY(360deg); transition: transform 2s;}
<!DOCTYPE html><html><head><style> div{ width:100px; height:100px; background-color:#d5d5d5; color:white; animation:myfirst 5s;}@keyframes myfirst{ from {margin-left:20px;} to {margin-left:520px;transform: rotateY(360deg);}}</style></head><body><div> 飞啊飞</div></body></html>