Pythonプロジェクト-Day 33-border-box-shadow-線形グラデーション-transition(遷移アニメーション)-flexレイアウト
3298 ワード
Pythonプロジェクト-Day 33-border-box-shadow-線形グラデーション-transition(遷移アニメーション)-flexレイアウト
border-top-left-radius
border-top-right-radius
border-bottom-left-radius
border-bottom-right-radius
border-radius
以上のスタイルは、それぞれ片側または多辺を設定、半径の大きさはpx、パーセント、em border-top-left-radius:10px
border-top-left-radius:20px 10px;
border-radius:50% 20px 25% 5em/25% 15px 40px 55%
border-image:url(/i/border.png) 30 30 stretch;
box-shadow: 10px 10px 10px 50px red inset;
/* 10px 10px / 50px red */
text-shadow: 5px 5px 5px grey;
パラメータ名
説明
clip
省略記号を末尾に使用しない
ellipsis
省略記号を末尾に使用
テキストカットの効果を達成するには、次のようにする必要があります.
例:
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
例:
-webkit-text-stroke: 1px yellow;
//
-o-border-image: url("");
-webkit-border-image: url("");
border-image: url("");
//
border-image: url("");
-o-border-image: url("");
-webkit-border-image: url("");
#grad1 {
height: 200px;
background: -webkit-linear-gradient(left, red , blue); /* Safari 5.1 - 6.0 */
background: -o-linear-gradient(right, red, blue); /* Opera 11.1 - 12.0 */
background: -moz-linear-gradient(right, red, blue); /* Firefox 3.6 - 15 */
background: linear-gradient(to right, red , blue); /* ( ) */
}
色グラデーションtransform: translate(200px,202px) skew(45deg);
tramsform-originプロパティ:このプロパティは変形のデータム点を変更するために使用され、デフォルトでは中心にあり、スペース間隔例えば:transform-origin: 0% 40%;
transition:background-color 1s ease 0s;
transition:color 1s linear 1.0s;
transition:all 1s ease 0s;
/*change */
@keyframes change {
0%{
background-color: red;
}
50%{
background-color: purple;
}
100%{
background-color: lime;
}
}
.div-02:hover{
/*animation change */
animation: change 2s linear;
}