首頁  >  文章  >  web前端  >  css如何實現下劃線滑動效果

css如何實現下劃線滑動效果

王林
王林轉載
2020-04-07 09:16:072814瀏覽

css如何實現下劃線滑動效果

本文主要講述兩種底線動效效果,第一種懸停時X軸由內向外展開實現動畫效果,第二種為左右自動展示,由左向右,或由右向左。

實現的主要效果是利用偽類標籤,以及hover,利用transfromm trition實現動畫效果。

x軸由內向外展開

css如何實現下劃線滑動效果

利用貝塞爾曲線利用橫線的動畫實現,具體程式碼如下:

ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
ul:hover li:not(:hover) a {
  opacity: 0.2;
}
ul li {
  position: relative;
  padding: 30px 25px 30px 25px;
  cursor: pointer;
}
ul li::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3498db;
  transform: scaleX(0);
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
ul li:hover::after, ul li.active::after {
  transform: scaleX(1);
}

(推薦教學:CSS教學

左右橫移下劃線動畫特效

css如何實現下劃線滑動效果

主要利用js判斷滑鼠移開時的位置,對動畫效果的進行左右移入移出顯示

js程式碼如下:

document.querySelectorAll('a').forEach(elem => {

  elem.onmouseenter =
  elem.onmouseleave = e => {

    const tolerance = 5;

    const left = 0;
    const right = elem.clientWidth;

    let x = e.pageX - elem.offsetLeft;

    if (x - tolerance < left) x = left;
    if (x + tolerance > right) x = right;

    elem.style.setProperty(&#39;--x&#39;, `${x}px`);

  };

});

css 利用偽類標籤進行動畫效果的動畫實作

css程式碼如下:

a {
  position: relative;
  font-weight: 600;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.4);
  transition: color .3s ease;
}
a::after {
  --scale: 0;
  content: &#39;&#39;;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 3px;
  background: #4c81c9;
  -webkit-transform: scaleX(var(--scale));
          transform: scaleX(var(--scale));
  -webkit-transform-origin: var(--x) 50%;
          transform-origin: var(--x) 50%;
  transition: -webkit-transform 0.3s cubic-bezier(0.535, 0.05, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.535, 0.05, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.535, 0.05, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.535, 0.05, 0.355, 1);
}
a:hover {
  color: #4c81c9;
}
a:hover::after {
  --scale: 1;
}

相關教學推薦:css影片教學

#

以上是css如何實現下劃線滑動效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:jb51.net。如有侵權,請聯絡admin@php.cn刪除