溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CSS filter使用小技巧有哪些

發(fā)布時間:2021-09-10 11:09:01 來源:億速云 閱讀:146 作者:柒染 欄目:web開發(fā)

本篇文章給大家分享的是有關CSS filter使用小技巧有哪些,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

我們在處理圖片時,經(jīng)常使用的一個功能就是濾鏡,它能使一張圖像呈現(xiàn)各種不同的視覺效果。

CSS filter使用小技巧有哪些

在 CSS 中,也有一個filter屬性,讓我們能用 CSS 代碼為元素指定各種濾鏡效果,比如模糊、灰度、明暗度、顏色偏移等。

CSS filter的基礎使用非常簡單,CSS 標準里包含了一些已實現(xiàn)預定義效果的函數(shù)(下面blur、brightness、contrast等),我們可以通過指定這些函數(shù)的值來實現(xiàn)想要的效果:

/* 使用單個濾鏡 (如果傳入的參數(shù)是百分數(shù),那么也可以傳入對應的小數(shù):40% --> 0.4)*/
filter: blur(5px);
filter: brightness(40%);
filter: contrast(200%);
filter: drop-shadow(16px 16px 20px blue);
filter: grayscale(50%);
filter: hue-rotate(90deg);
filter: invert(75%);
filter: opacity(25%);
filter: saturate(30%);
filter: sepia(60%);

/* 使用多個濾鏡 */
filter: contrast(175%) brightness(3%);

/* 不使用任何濾鏡 */
filter: none;

官方demo:MDN

CSS filter使用小技巧有哪些

濾鏡在日常開發(fā)中是很常見的,比如使用drop-shadow給不規(guī)則形狀添加陰影;使用blur來實現(xiàn)背景模糊,以及毛玻璃效果等。

下面我們將進一步使用CSS filter實現(xiàn)一些動畫效果,讓網(wǎng)站交互更加酷炫,同時也加深對CSS filter的理解。一起開始吧!

( 下面要使用到的 動畫 和 偽類 知識,在 CSS的N個編碼技巧 中都有詳細的介紹,這里就不重復了,有需要的朋友可以前往查看哦。 )

電影效果

濾鏡中的brightness用于調(diào)整圖像的明暗度。默認值是1;小于1時圖像變暗,為0時顯示為全黑圖像;大于1時圖像顯示比原圖更明亮。

我們可以通過調(diào)整 背景圖的明暗度文字的透明度 ,來模擬電影謝幕的效果。

CSS filter使用小技巧有哪些

<div class="container">
  <div class="pic"></div>
  <div class="text">
    <p>如果生活中有什么使你感到快樂,那就去做吧</p>
    <br>
    <p>不要管別人說什么</p>
  </div>
</div>
.pic{
    height: 100%;
    width: 100%;
    position: absolute;
    background: url('./images/movie.webp') no-repeat;
    background-size: cover;
    animation: fade-away 2.5s linear forwards;    //forwards當動畫完成后,保持最后一幀的狀態(tài)
}
.text{
    position: absolute;
    line-height: 55px;
    color: #fff;
    font-size: 36px;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    animation: show 2s cubic-bezier(.74,-0.1,.86,.83) forwards;
}
    
@keyframes fade-away {    //背景圖的明暗度動畫
    30%{
        filter: brightness(1);
    }
    100%{
        filter: brightness(0);
    }
}
@keyframes show{         //文字的透明度動畫
    20%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

模糊效果

在下面的單詞卡片中,當鼠標hover到某一張卡片上時,其他卡片背景模糊,使用戶焦點集中到當前卡片。

CSS filter使用小技巧有哪些

html結構:

<ul class="cards">
    <li class="card">
      <p class="title">Flower</p>
      <p class="content">The flowers mingle to form a blaze of color.</p>
    </li>
    <li class="card">
      <p class="title">Sunset</p>
      <p class="content">The sunset glow tinted the sky red.</p>
    </li>
    <li class="card">
      <p class="title">Plain</p>
      <p class="content">The winds came from the north, across the plains, funnelling down the valley. </p>
    </li>
 </ul>

實現(xiàn)的方式,是將背景加在.card元素的偽類上,當元素不是焦點時,為該元素的偽類加上濾鏡。

.card:before{
    z-index: -1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 20px;
    filter: blur(0px) opacity(1);
    transition: filter 200ms linear, transform 200ms linear;
}
/*
     這里不能將濾鏡直接加在.card元素,而是將背景和濾鏡都加在偽類上。
     因為,父元素加了濾鏡,它的子元素都會一起由該濾鏡改變。
     如果濾鏡直接加在.card元素上,會導致上面的文字也變模糊。
*/
//通過css選擇器選出非hover的.card元素,給其偽類添加模糊、透明度和明暗度的濾鏡 

.cards:hover > .card:not(:hover):before{    
  filter: blur(5px) opacity(0.8) brightness(0.8);
}
//對于hover的元素,其偽類增強飽和度,尺寸放大

.card:hover:before{
  filter: saturate(1.2);  
  transform: scale(1.05);
}

褪色效果

褪色效果可以打造出一種懷舊的風格。下面這組照片墻,我們通過sepia濾鏡將圖像基調(diào)轉(zhuǎn)換為深褐色,再通過降低 飽和度saturate 和 色相旋轉(zhuǎn)hue-rotate 微調(diào),模擬老照片的效果。

CSS filter使用小技巧有哪些

.pic{
    border: 3px solid #fff;
    box-shadow: 0 10px 50px #5f2f1182;
    filter: sepia(30%) saturate(40%) hue-rotate(5deg);
    transition: transform 1s;
}
.pic:hover{
    filter: none;
    transform: scale(1.2) translateX(10px);
    z-index: 1;
}

灰度效果

怎樣讓網(wǎng)站變成灰色?在html元素上加上filter: grayscale(100%)即可。

grayscale(amount)函數(shù)將改變輸入圖像灰度。amount 的值定義了灰度轉(zhuǎn)換的比例。值為 100% 則完全轉(zhuǎn)為灰度圖像,值為 0% 圖像無變化。若未設置值,默認值是 0。

CSS filter使用小技巧有哪些

融合效果

要使兩個相交的元素產(chǎn)生下面這種融合的效果,需要用到的濾鏡是blurcontrast。

CSS filter使用小技巧有哪些

<div class="container">
  <div class="circle circle-1"></div>
  <div class="circle circle-2"></div>
</div>
.container{
  margin: 50px auto;
  height: 140px;
  width: 400px;
  background: #fff;   //給融合元素的父元素設置背景色
  display: flex;
  align-items: center;
  justify-content: center;
  filter: contrast(30);    //給融合元素的父元素設置contrast
}
.circle{
  border-radius: 50%;
  position: absolute;
  filter: blur(10px);    //給融合元素設置blur
}
.circle-1{
  height: 90px;
  width: 90px;
  background: #03a9f4;
  transform: translate(-50px);
  animation: 2s moving linear infinite alternate-reverse;
}
.circle-2{
  height: 60px;
  width: 60px;
  background: #0000ff;
  transform: translate(50px);
  animation: 2s moving linear infinite alternate;
}
 @keyframes moving {    //兩個元素的移動
  0%{
    transform: translate(50px)
  }
  100%{
    transform: translate(-50px)
  }
}

實現(xiàn)融合效果的技術要點:

  • contrast濾鏡應用在融合元素的父元素(.container)上,且父元素必須設置background。

  • blur濾鏡應用在融合元素(.circle)上。

blur設置圖像的模糊程度,contrast設置圖像的對比度。當兩者像上面那樣組合時,就會產(chǎn)生神奇的融合效果,你可以像使用公式一樣使用這種寫法。

在這種融合效果的基礎上,我們可以做一些有趣的交互設計。

  • 加載動畫:

CSS filter使用小技巧有哪些

htmlcss如下所示,這個動畫主要通過控制子元素.circle的尺寸和位移來實現(xiàn),但是由于父元素和子元素都滿足 “融合公式” ,所以當子元素相交時,就出現(xiàn)了融合的效果。

<div class="container">
  <div class="circle"></div>
  <div class="circle"></div>
  <div class="circle"></div>
  <div class="circle"></div>
  <div class="circle"></div>
</div>
.container {
  margin: 10px auto;
  height: 140px;
  width: 300px;
  background: #fff;       //父元素設置背景色
  display: flex;
  align-items: center;
  filter: contrast(30);   //父元素設置contrast
}
.circle {
  height: 50px;
  width: 60px;
  background: #1aa7ff;
  border-radius: 50%;
  position: absolute;
  filter: blur(20px);    //子元素設置blur
  transform: scale(0.1);
  transform-origin: left top;
}
.circle{
  animation: move 4s cubic-bezier(.44,.79,.83,.96) infinite;
}
.circle:nth-child(2) {
  animation-delay: .4s;
}
.circle:nth-child(3) {
  animation-delay: .8s;
}
.circle:nth-child(4) {
  animation-delay: 1.2s;
}
.circle:nth-child(5) {
  animation-delay: 1.6s;
}
@keyframes move{     //子元素的位移和尺寸動畫
  0%{
    transform: translateX(10px) scale(0.3);
  }
  45%{
    transform: translateX(135px) scale(0.8);
  }
  85%{
    transform: translateX(270px) scale(0.1);
  }
}
  • 酷炫的文字出場方式:

CSS filter使用小技巧有哪些

主要通過不斷改變letter-spacingblur的值,使文字從融合到分開:

<div class="container">
  <span class="text">fantastic</span>
</div>
.container{
  margin-top: 50px;
  text-align: center;
  background-color: #000;
  filter: contrast(30);
}
.text{
  font-size: 100px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  letter-spacing: -40px;
  color: #fff;
  animation: move-letter 4s linear forwards;  //forwards當動畫完成后,保持最后一幀的狀態(tài)
}
@keyframes move-letter{
  0% {
    opacity: 0;
    letter-spacing: -40px;
    filter: blur(10px);
  }
  25% {
    opacity: 1;
  }
  50% {
    filter: blur(5px);
  }
  100% {
    letter-spacing: 20px;
    filter: blur(2px);
  }
}

水波效果

filter還可以通過 URL 鏈接到 SVG 濾鏡元素,SVG濾鏡元素MDN 。

下面的水波紋效果就是基于 SVG 的feTurbulence濾鏡實現(xiàn)的,原理參考了 說說SVG的feTurbulence濾鏡和SVG feTurbulence濾鏡深入介紹,有興趣的朋友可以深入閱讀。

feTurbulence濾鏡借助Perlin噪聲算法模擬自然界真實事物那樣的隨機樣式。它接收下面5個屬性:

  • baseFrequency表示噪聲的基本頻率參數(shù),頻率越高,噪聲越密集。

  • numOctaves就表示倍頻的數(shù)量,倍頻的數(shù)量越多,噪聲看起來越自然。

  • seed屬性表示feTurbulence濾鏡效果中偽隨機數(shù)生成的起始值,不同數(shù)量的seed不會改變噪聲的頻率和密度,改變的是噪聲的形狀和位置。

  • stitchTiles定義了Perlin噪聲在邊框處的行為表現(xiàn)。

  • type屬性值有fractalNoiseturbulence,模擬隨機樣式使用turbulence。

CSS filter使用小技巧有哪些

在這個例子,兩個img標簽使用同一張圖片,將第二個img標簽使用scaleY(-1)實現(xiàn)垂直方向的鏡像翻轉(zhuǎn),模擬倒影。

并且,對倒影圖片使用feTurbulence濾鏡,通過動畫不斷改變feTurbulence濾鏡的baseFrequency值實現(xiàn)水紋波動的效果。

<div class="container">
  <img src="images/moon.jpg">
  <img src="images/moon.jpg" class="reflect">
</div>

<!--定義svg濾鏡,這里使用的是feTurbulence濾鏡-->
<svg width="0" height="0">
    <filter id="displacement-wave-filter">
    
      <!--baseFrequency設置0.01 0.09兩個值,代表x軸和y軸的噪聲頻率-->  
      <feTurbulence baseFrequency="0.01 0.09">
        
        <!--這是svg動畫的定義方式,通過動畫不斷改變baseFrequency的值,從而形成波動效果-->
        <animate attributeName="baseFrequency"
        dur="20s" keyTimes="0;0.5;1" values="0.01 0.09;0.02 0.13;0.01 0.09"
        repeatCount="indefinite" ></animate>
        
      </feTurbulence>
      <feDisplacementMap in="SourceGraphic" scale="10" /> 
    </filter>
</svg>
.container{
   height: 520px;
   width: 400px;
   display: flex;
   clip-path: inset(10px);
   flex-direction: column;
}
img{
  height: 50%;
  width: 100%;
}
.reflect {
  transform: translateY(-2px) scaleY(-1);
  //對模擬倒影的元素應用svg filter
  //url中對應的是上面svg filter的id
  filter: url(#displacement-wave-filter);  
}

抖動效果

在上面的水波動畫中改變的是baseFrequency值,我們也通過改變seed的值,實現(xiàn)文字的抖動效果。

CSS filter使用小技巧有哪些

<div>
  <p class="shaky">Such a joyful night!</p>
</div>
<svg width="0" height="0">
    <filter id="displacement-text-filter">
    
      <!--定義feTurbulence濾鏡-->
      <feTurbulence baseFrequency="0.02" seed="0">
      
       <!--這是svg動畫的定義方式,通過動畫不斷改變seed的值,形成抖動效果-->
        <animate attributeName="seed"
        dur="1s" keyTimes="0;0.5;1" values="1;2;3"
        repeatCount="indefinite" ></animate>
      </feTurbulence>
      <feDisplacementMap in="SourceGraphic" scale="10" /> 
    </filter>
  </svg>
.shaky{
  font-size: 60px;
  filter: url(#displacement-text-filter);   //url中對應的是上面svg filter的id
}

以上就是CSS filter使用小技巧有哪些,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI