网页设计做出令人惊叹的 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. class="gradient-border" id="box">CSS 范例 CSS效果
  

评论 (0)

此处尚未发表评论

留言

  1. 以游客身份发表评论。注册登入到您的帐户。
附件 (0/ 3)
分享您的位置