網頁設計做出令人驚嘆的 CSS 邊框效果的程式碼片段

網頁設計做出令人驚嘆的 CSS 邊框效果的程式碼片段

專業Google 關鍵字廣告文案寫作,專人Google廣告代操服務,展現出流量轉金流的最大化關鍵字廣告,台北Google廣告,台北Google代理商,關鍵字廣告, 台北 Google 關鍵字廣告,協助企業開通Google Ads帳戶在Google上做廣告。了解有關如何充分利用Google Ads的更多信息 台北基隆GOOGLE關鍵字廣告基隆台北網頁設計費用台北網頁設計價格基隆網頁設計費用

邊框通常被認為是次要的細節,用作圖像或容器元素的點睛之筆。它們是一種美感,但幾乎沒有什麼值得興奮的。但隨著 CSS 的發展,它們有潛力變得更強大。

考慮到這一點,讓我們來看看一些邊框範例,這些邊框透過 CSS 提供的最佳功能進一步增強。

搶風頭的人

這是一個提供平滑動畫邊框的解決方案。這種設定的好處在於它能吸引你,但絕不是俗氣或誇張的。這將成為一個出色的號召性用語按鈕。

CSS 範例
CSS
效果

css代碼

  1. #box {   
  2.   display: flex;   
  3.   align-items: center;   
  4.   justify-content: center;   
  5.   width: 400px;   
  6.   height: 200px;   
  7.   color: white;   
  8.   font-family: 'Raleway';   
  9.   font-size: 2.5rem;   
  10. }   
  11. .gradient-border {   
  12.   --borderWidth: 3px;   
  13.   background: #1D1F20;   
  14.   position: relative;   
  15.   border-radius: var(--borderWidth);   
  16. }   
  17. .gradient-border:after {   
  18.   content: '';   
  19.   position: absolute;   
  20.   top: calc(-1 * var(--borderWidth));   
  21.   left: calc(-1 * var(--borderWidth));   
  22.   height: calc(100% + var(--borderWidth) * 2);   
  23.   width: calc(100% + var(--borderWidth) * 2);   
  24.   background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);   
  25.   border-radius: calc(2 * var(--borderWidth));   
  26.   z-index: -1;   
  27.   animation: animatedgradient 3s ease alternate infinite;   
  28.   background-size: 300300%;   
  29. }   
  30.   
  31.   
  32. @keyframes animatedgradient {   
  33.   0% {   
  34.     background-position: 050%;   
  35.   }   
  36.   50% {   
  37.     background-position: 10050%;   
  38.   }   
  39.   100% {   
  40.     background-position: 050%;   
  41.   }   
  42. }   
  43.   

html代碼

  1. <div class="gradient-border" id="box">CSS 範例 <br />CSS<br />效果</div>  

評論 (0)

此處尚未發表評論

留言

  1. 以遊客身份發表評論。 註冊登入到您的帳戶。
附件 (0 / 3)
分享您的位置