1. 程式人生 > >常用前端佈局,CSS技巧介紹

常用前端佈局,CSS技巧介紹

常用前端佈局,CSS技巧介紹

對前端常用佈局的整理總結,並對其效能優劣,相容等情況進行介紹

css常用技巧之可變大小正方形的繪製


1:若通過設定width為百分比的方式,則高度不能通過百分比來控制.
在這個地方可以使用padding來實現,首先,元素的高度=height+padding*2+border*2;所以我們可以將widht設定為0,
然後用padding來實現盒子的高度(若元素padding的值是一個百分比,則是基於其父元素的寬度來計算的)


    width: 50%;
    height: 0;
    background: red;
    padding-bottom: 50%;

2:通過在元素中新增一個正方形的圖片實現,設定圖片寬度100%,高度auto,元素不設定高度即可。(不推薦,特別是九宮格)

3:通過vw,vh來實現。(有一定的相容性問題)

元素高度可變,需要元素內部元素水平垂直居中(主要是垂直)方案


1:通過display:table實現,給最外部元素display:table,同時新增一個次外層元素 
設定display:table-cell,vertical-align: middle;這時第三層的元素即可垂直居中。


<div class="container">
    <div class="center">
    <span>

    </span>
    </div>
</div>

.container {
    display:table;
    widht:50%;
    height:50vw;
}
.center {
    display: table-cell;
    vertical-align: middle;
}
.center > span {
    display: block;
    widht: 20px;
    height: 20px;
    background: #ff0000;
    margin: 0 auto;
}

2:通過flex佈局,父元素設定為justify-content:center,align-items:center;

3:通過grid佈局,父元素設定為justify-content:center,align-items:center;

4:通過position + transform(margin)實現,如果使用margin則需要知道子元素的寬高且這個寬高不可變(這是由於magin如果設定為百分比是基於父元素的widht來計算的),
如果使用transform則沒有這個限制(transform的值是基於元素本身的widht和height來計算的),但又一點相容的問題(推薦使用transform的方式)


<div class="parent">
    <div class="child"></div>
</div>

.parent {
    width: 200px;
    height: 200px;
    position: relative;
    background: yellow;
}

//transform: translate(-50%, -50%);
.child {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
    margin: -50px 0 0 -50px;
    background: green;
}

對於單行文字和多行文字超出部分 ...



//注意是單行文字可用
<p class="text">
    這時一段單行文字
</p>

.text{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 200px;
}

//多行文字 需要注意盒子的高度要調整適當,不然會出行最後一行文字只顯示一半的情況
//該方法適用於WebKit瀏覽器及移動端
<p class="text">
    這時一段多行文字
</p>

.text{
    height: 100px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
}

自定義文字選擇樣式


<p class="custom-text-selection">Select some of this text.</p>

//全域性設定選中文字樣式
::selection {
    background: aquamarine;
    color: black;
}
//針對某個class設定
.custom-text-selection::selection {
    background: deeppink;
    color: white;
}

雜項


//文字陰影
text-shadow: 1px 1px #ad6969;

//CSS3 filter(濾鏡) 屬性
fliter: blur(50px); //設定高斯模糊 單位px 會導致邊緣變大
filter: grayscale(100%); //灰度100%
filter: brightness(150%) //設定亮度
filter: contrast(180%);  //設定對比度
...

clip: rect(0,0,0,0)  //元素剪下(只在定位元素中生效)

cubic-bezier屬性 三階貝塞爾曲線 使用者控制動畫速度
用法:transition: transform 1s cubic-bezier();

user-select: none; //文字不能選擇

css變數使用


//基礎用法
<p class="var-dynamic">var-dynamic</p>
.body {
    --customize-height: 100px;
}

.var-dynamic {
     height: var(--customize-height);
}

//擴充套件高階 通過js來控制css中的變數值
<p class="var-dynamic">var-dynamic</p>

.var-dynamic {
     height: var(--customize-height);
}

<script>
    var varDynamic  = document.querySelect(".var-dynamic");
    el.style.setProperty('--customize-height', 200 + 'px')
</script>

//和less sass等前處理器的變數比較

1:前處理器的變數不是實時的,在media中試圖改變變數的值是不可行的,css變數可以

2:不繼承,不級聯

檢視詳情

border為1畫素的邊框


//由於裝置的dpr不同,我們設定的1px邊框在不能的裝置中呈現的效果不一。
//那麼通過裝置dpr來設定不同的border的值不可以嗎?
//我們需要知道border-widht的最低值為1px,低於1的無效

//使用 box-shadow: 0 0 0 0.5px; 來處理
//Browser Support 95.5%

.hairline-border {
  box-shadow: 0 0 0 1px;
}
@media (min-resolution: 2dppx) {
  .hairline-border {
    box-shadow: 0 0 0 0.5px;
  }
}
@media (min-resolution: 3dppx) {
  .hairline-border {
    box-shadow: 0 0 0 0.33333333px;
  }
}
@media (min-resolution: 4dppx) {
  .hairline-border {
    box-shadow: 0 0 0 0.25px;
  }
}

對於列表元素針對某個元素的樣式做單獨處理(:not 選擇器)


//對每個li元素 新增右border 最後一個不加
<ul class="css-not-selector-shortcut">
  <li>One</li>
  <li>Two</li>
  <li>Three</li>
  <li>Four</li>
</ul>

//傳統解決
li {
    border-right: 2px solid #d2d5e4;
}

li:last-child {
    border-right: none;
}

//簡潔寫法
li:not(:last-child) {
    border-right: 2px solid #d2d5e4;
}
//關於not的其他寫法
li:not(.a) //not中放入其他選擇器

ui:hover li:not(:hover) {
  opacity: 0.5;
}

css三角形的繪製



<div class="triangle"></div>

//通過border的方式間接實現
.triangle {
    width: 0;
    height: 0;
    border-top: 20px solid #333;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

//css3 clip-path裁剪屬性
clip-path: polygon(50% 0px, 100% 100%, 0px 100%);

一個小小的loading動畫


<div class="donut"></div>
@keyframes donut-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.donut {
    display: inline-block;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #7983ff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: donut-spin 1.2s linear infinite;
}

css實現switch


<input type="checkbox" id="toggle" class="offscreen" />
<label for="toggle" class="switch"></label>

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    transition: all 0.3s;
}
.switch::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 18px;
    background-color: white;
    top: 1px;
    left: 1px;
    transition: all 0.3s;
}
input[type='checkbox']:checked + .switch::after {
    transform: translateX(20px);
}
input[type='checkbox']:checked + .switch {
    background-color: #7983ff;
}
.offscreen {
    position: absolute;
    left: -9999px;
}

原文地址:https://segmentfault.com/a/1190000016960443